If it completely ignored all the formattings, then what was shown?
I track due dates too, to resolution in term of days before and after a due
to track.
Presented here, is an improved version to what was previously discussed. It
eliminated the condition explicitly written to check whether cell is empty.
Assume due dates in column A.
Condition 1
Formula Is | =AND(B2<>"",B2=TODAY())
=> Today is the due date
Condition 2
Formula Is | =AND(B2<>"",B2-TODAY()<=7)
=> Date due in one week's time
Condition 3
Formula Is | =AND(B2<>"",TODAY()>B2)
=> Overdue
If the above 3 conditions are not satisfied (i.e. date is due in more than a
week's time or cell is empty), the default format will be used.
The advantages of this method over the previous one are:
1. It allows one more condition.
2. Blank cells are ignored.
The disadvantage of this method over the previous one is that it cannot
differentiate blank cells from cells with due dates longer than a week.
Regards.
Niki said:
Dear Max: I jumped for joy when I saw this thread. Alas, following the
directions exactly - I cannot get it to work. I am tracking expiration dates
also. Have formatted my dates as 1/1/2005 - it just ignores all the
formatting I do. What could possibly be wrong. Appreciate any feedback at
all.
Niki