Forum Discussion
Changing a display date
- 2 years ago
Hi Maesknoll
There are multiple ways to do this.
I assumed you have this kind of data:
You just need to go to the Modeling tab and add a new column using this DAX:
NewDate = 'EmailData'[OriginalDate] - 1
You'll get this output:
Please see, if this is what you want.
Best Regards,
Muhammad YousafIf this post helps, then please consider "Accept it as the solution" to help the other members find it more quickly.
- 1 year ago
Perfect, thank you
Hi Maesknoll
There are multiple ways to do this.
I assumed you have this kind of data:
You just need to go to the Modeling tab and add a new column using this DAX:
NewDate = 'EmailData'[OriginalDate] - 1
You'll get this output:
Please see, if this is what you want.
Best Regards,
Muhammad Yousaf
If this post helps, then please consider "Accept it as the solution" to help the other members find it more quickly.