Forum Discussion
mskarka
3 years agoRegular Visitor
Format date in table based on current date
I have table vizualization with column "date". I want to change color of the date value based on current date. So for example: IF "date" > TODAY then (show red) - or something like that... I t...
krishb1414
3 years agoHelper III
try this measure
measure = IF(date > Today(),1,0)
and go to conditional formatting select field value as this measure and choose these conditions
1) measure = 1, Red
2) measure = 0, Green
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.