Forum Discussion
Anonymous
5 years agoNot applicable
Condition column today+2
Hi Team, I have a Date filed, I need to create a new column which gives me today -2. Project OwnerDate Project 1 A 7/21/2021 2 B 7/15/2021 3 C 7/17/2021 4 D 7/18/2021 ...
- 5 years ago
Hi Anonymous
You can use conditional formatting.
Create measure as:
Measure = IF( MAX('Table'[Date])=TODAY()-2, 1, 0 )Here is the output:
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
v-xulin-mstf
5 years agoCommunity Support
Hi Anonymous
You can use conditional formatting.
Create measure as:
Measure =
IF(
MAX('Table'[Date])=TODAY()-2,
1,
0
)
Here is the output:
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!