Forum Discussion
Life_is
Dec 16, 2020Copper Contributor
Highlighting an anniversary date for 30 days
I have applied this conditional formatting =(MONTH(TODAY())=MONTH(B5))*(DAY(TODAY())=DAY(B5)) and it works like a charm!! However, I cannot seem to figure out how to add in the formula for the cell(s...
MindreVetande
Dec 16, 2020Iron Contributor
If you don't care if it stays on for ever
=TODAY()>=(B5-30)
Or, if you want +- 30 days
=ABS(TODAY()-B5)<=30
Or if you want the warning to go of once the date is passed
=AND(TODAY()>=(B5-30),TODAY()<=B5)
=(TODAY()>=(B5-30))*(TODAY()<=B5)
Life_is
Dec 16, 2020Copper Contributor