Forum Discussion

inglexjc's avatar
inglexjc
Post Patron
3 years ago
Solved

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 ...
  • AilleryO's avatar
    AilleryO
    3 years ago

    It should be :

    FormatColour = IF(Today() >= [Date_due], "Red") 

    tells us if it works