graphical indicator

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have a spreadsheet with the following columns:
1. Project Name
2. Status
3. Original ECD (estimated date of comletion)
4. New ECD

I need to insert graphical indicators that show Red, Yellow, Green based on
#3 above.

Green – Projects are within their estimates and their ECDs
Yellow – ECD =< 14 days (e.g., ECD=4/2/07 and today is 3/19/07)
Red – Today’s date = > ECD

How can I do this in Excel?
 
Conditional Formatting

Condition 1: =A1<=TODAY()-14
format cell as yellow

Condition 2: =A1<=TODAY()
format cell as red
 
Back
Top