I am trying to set a conditional formatting for an expiration date field. The idea is to show via color coding (green, yellow, and red) when the expiration date is approaching according to the cell (In the E column) and today's date.
It should fill green when the date in the field is equal or after today
=E3>TODAY()
It should fill yellow when the date in the field is less than today and less than 3 months (90 days) (between 89 days and yesterday)
=AND(E3<TODAY(),E3>(TODAY()-90))
It should fill red when the date in the field is less than 3 months (90 days)
=E3<=TODAY()-90
The colors do not match my date ranges.
EDIT:
I have updated my original post to include more info and updated screenshot example.
I included the dates (including "today's date") as reference. I added the conditional Formatting Rules formula in the cells. I included the Correction column to show what the correct color should be.
=AND(H3 > TODAY()-90, H3 < TODAY())
? - GSerg