Forum Discussion
Change cell colour when current date is greater than one cell date and less than another cell date
I need to change the colour of a cell based on whether the date is today or over, within 30 days of today or 60 days of today.
I'm using the formulas -
=AND(C6:AY25>(TODAY()+30),C6:AY25<(TODAY()+60))
=AND(C6:AY25>TODAY(),C6:AY25<=(TODAY()+30))
But it isn't working.
Can anyone help?
I also need to create one for today's date or over.
I'm trying to create a traffic light system for training dates, green, within 2 months away before renewal, yellow within one month before renewal, and red overdue.
Thank you for any help :)
- SergeiBaklanJan 29, 2025Diamond Contributor
HoffyC , formula shall be like
=AND(C3 >(TODAY()+30),C3<(TODAY()+60))
i.e. you use in it first cell from the range to which conditional formatting is applied ($C$3:$AY$25). With that conditional formatting iterates each cell in the range applying the formula. Since we use relative reference in the formula, internally in formula will be used C3, D3,...AY3, C4,...AY25.
That the same as you enter above formula below you range and drag it down and to the right if you'd like to test returned values.
- HoffyCJan 30, 2025Copper Contributor
Brilliant, thank you Sergie, that worked.
Would you be able to help me with the final formula? any date that has expired the cell turns red?
Your help has been exceptional.
- SergeiBaklanJan 31, 2025Diamond Contributor
You may add one more rule with formula like
= C3 < TODAY()
for the "red" formatting.