Forum Discussion
Anonymous
7 years agoNot applicable
Creating conditional formatting for Date greater than Due date or Today
Hi , So i have a requirement, where I would like to compare my Date field with Today's Date or any other Date Field and if it has passed the date. I would like to do a conditional formatting on th...
- 7 years ago
Hi Anonymous,
Assume highlight [RateChangeDate] if [RateChangeDate] greater than [ModifiedDate], you can create a measure below:
Measure = IF(MAX('Query2'[RateChangeDate])<=MAX('Query2'[ModifiedDate]),0,1)
Then set conditional formatting for [RateChangeDate] column like below:
Best Regards,
Qiuyun Yu
v-qiuyu-msft
7 years agoCommunity Support
Hi Anonymous,
Assume highlight [RateChangeDate] if [RateChangeDate] greater than [ModifiedDate], you can create a measure below:
Measure = IF(MAX('Query2'[RateChangeDate])<=MAX('Query2'[ModifiedDate]),0,1)
Then set conditional formatting for [RateChangeDate] column like below:
Best Regards,
Qiuyun Yu