Forum Discussion
inglexjc
3 years agoPost Patron
Conditional Formatting Past Due Date
I want to show font color (Red) if the Due Date is Today or before today. Table name is TR_FSP_2 column is Date_Due. Case Name Date_Due Smith, j 10/06/2020 x, Greg 11/07/2022 Harris ...
- 3 years ago
It should be :
FormatColour = IF(Today() >= [Date_due], "Red")
tells us if it works
AilleryO
3 years agoMemorable Member
Hi,
TODAY is a function so needs parenthesis : TODAY()
To add to inglexjc answer, notice taht the TODAY() date is the one from the machine where the report is running, ie :
your PC when on Power BI Desktop
or the server on Power BI Service (and then it depends on the location of the server...).
You can check this location in Power BI admin.
Hope it helps