Conditional formatting/non blank cells

C

Caroline

Hello,
(Excel 2007) I am trying to format a cell based on another cell being "non
blank". I thought the non blank formula was "<>" but it's not working, e.g.
=$E$2="<>"
This =$E$2="" works for blank cells but I need it to be "non blank".
Thank you for your help,
Caroline
 
G

Glenn

Caroline said:
Hello,
(Excel 2007) I am trying to format a cell based on another cell being "non
blank". I thought the non blank formula was "<>" but it's not working, e.g.
=$E$2="<>"
This =$E$2="" works for blank cells but I need it to be "non blank".
Thank you for your help,
Caroline


=$E$2<>""
 
S

Sheeloo

Use
=$E$2<>""

Two double quotes without anything in between to represent blank.
Or use =ISBLANK($E$2)

Be careful with absolute references if you are going to use this over
multiple cells.
 
S

Sheeloo

NOT ISBLANK($E$2)


Sheeloo said:
Use
=$E$2<>""

Two double quotes without anything in between to represent blank.
Or use =ISBLANK($E$2)

Be careful with absolute references if you are going to use this over
multiple cells.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top