Forum Discussion
MarkShnier__You
4 years agoQrew Legend
Try this
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------
IF(
IsNull([Completion Date])
and
ToDate([Assignment Date and Time]) - Days(7) >= Today(), "#F60612")
//I'm assuming that the Completion Date is a Date field type and the other field is a Date / Time field type.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------
- ClariceDennison4 years agoQrew TraineeThank you so much Mark!
re: the date assumption, yes, that is correct.
I ended up switching the formula around as the rows were not turning red.
IF(
IsNull([Completion Date])
and
Today() - ToDate([Assignment Date and Time]) >= Days(7), "#F60612")
Thanks again!
------------------------------
Clarice Dennison
------------------------------- MarkShnier__You4 years agoQrew LegendOK great, I thought that you wanted to warn when the Today was coming up to be within 7 Days of the Assignment Date but I see that you want to know if it's more than 7 days late.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------