Link to home
Start Free TrialLog in
Avatar of gisvpn
gisvpnFlag for United States of America

asked on

Excel 2010 Conditional Formatting - Blanks

Hello,

I am trying to create conditional formatting in Excel 2010.

I am trying to make the cell GREEN when the date is in the future and red is the date is the current date or in the past and nothing (i.e. white) is the cell to which the conditional formatting is applied is blank.

I have created the conditional formatting as shown however blank cells turn red? Could anyone suggest why this is?

Regards,

GISVPn
Capture.PNG
Avatar of clamps
clamps
Flag of Germany image

can you set Cell Value <= TODAY() AND NOT Cell contains a blank...?
Avatar of regmigrant
an empty cell will be interpreted as less than today because its got no data in.

try: =AND(NOT(ISBLANK(I1)),I1<=TODAY())

but I dont recommend setting the rule to cover all 650000 rows - place it in just the areas you want to cover or excel will slow down when recalucalating.
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gisvpn

ASKER

no unfortunately none of those worked.
Last one should be Cell Value =""
Avatar of gisvpn

ASKER

rorya - thank you! It was this one that worked.

Move the third condition up and check the Stop if true box.


Capture.PNG