Help with Conditional Formatting Formulas

bradjedis
4StarLounger
Posts: 540
Joined: 30 Mar 2010, 18:49
Location: United States

Help with Conditional Formatting Formulas

Post by bradjedis »

Greetings, Any help is greatly appreciated!
Thanks,
Brad


using excel 2007:

I am unclear as how to write these 2 condition formulas.

First Condition:

IF (f16="" and Today() <= e16+7) then no color

Second Condition

IF(f16="" and today() > e16+7) then RED



These are working:

Third Condition

=(F16>E16+7) then Purple

Fourth Condition

=(F16<=E16+7) then Yellow

User avatar
HansV
Administrator
Posts: 78592
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Help with Conditional Formatting Formulas

Post by HansV »

Use these formulas:

=AND(F16="",TODAY()<=E16+7)

and

=AND(F16="",TODAY()>E16+7)
Best wishes,
Hans

bradjedis
4StarLounger
Posts: 540
Joined: 30 Mar 2010, 18:49
Location: United States

Re: Help with Conditional Formatting Formulas

Post by bradjedis »

Works for me,


Thanks, Brad