A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
select the desired range e.g. B2:E7
and add the following rules
Green dot = Current (date is greater than today)
=AND(B2<>"",B2>TODAY())
Yellow dot = up to 30 days expired (date is before today up to or equal to 30 days)
=AND(B2<>"",B2<=TODAY()-1,B2>=EDATE(TODAY(),-1))
Red dot = up to 12 months expired (date is before today by more than 30 days up to 12 months)
=AND(B2<>"",B2>=EDATE(TODAY(),-12),B2<EDATE(TODAY(),-1))
Black dot = over 1 year expired (date is before today by more than 12 months/1 year)
=AND(B2<>"",B2<EDATE(TODAY(),-12))
instead of black is blue