I was wondering if there is any way (formulas) that can change a cell's color when we are approaching the date previously entered in a cell. What I am looking for is a way to notify myself of upcoming milestones so that I don't miss deadlines.
For example: if I forecasted that I need to apply for a building permit on 02/17/26 (data already in cell), is there any way that I can format that cell to change colors when we are approaching that date?
Yellow for 30 days before the date & red for 10 days before that date.
Attached is a screenshot to help explain. Any help would be greatly appreciated due to my below average Google Sheet skills
I searched Google for existing formulas to change a cells color. The only result I could find were formulas that changed cells based on distance from today's date not approaching future dates
=IFERROR(AND(A1-TODAY()<=30, A1-TODAY()>10),"Invalid Date")for color Yellow, then another custom formula for color Red=IFERROR(AND(A1-TODAY()<=10, A1-TODAY()>=0),"Invalid Date")