Setting up an alert for a date that is greater than 7 days in the past

steve50951
ββ
I am tracking vehicle maintenance for our corporate vehicles. I want to set up aΒ rule that will send an email alertΒ when a repairedΒ checkbox is goes uncheckedΒ 7 daysΒ from the reported date. There is an option for "in the past (days)". But that doesn't seem to work if the repair date doesnt fit within the "x" # of days you put it. I want it to send an alert it goesΒ unchecked greater than 5 days.
Tags:
Comments
-
If the sheet gets opened daily, you could add a checkbox column and enter
Β
=IF(AND(TODAY(-7) > [Reported Date]@row, [Repaired Column]@row = 0), 1)
Β
This will check the box if the two criteria are met. You can then base your alert to send for when that box is checked.
-
worked great! exactly what I was looking for.Β
Thanks!
Β
SGF