Conditional Formatting on Null Value

G

Guest

I have a field which is formatted to be a date field (D5) and another field
which tracks if follow up is needed (G5). I want to use conditional
formatting to highlight G5 if D5 is null, meaning no date has been entered.

Pulling my hair out as I can't quite find the right formula or words to tell
it to look for nothing.

Any help would be appreciated!
 
G

Guest

I have a field which is formatted to be a date field (D5) and another field
which tracks if follow up is needed (G5). I want to use conditional
formatting to highlight G5 if D5 is null, meaning no date has been entered.
....

Two ways, depending on what you mean by 'null'. If you mean D5 contains
nothing, then use either =COUNTA(D5)=0 or =ISBLANK(D5). If you mean D5
contains nothing OR evaluates to "", use =COUNTBLANK(D5)=1.
 
G

Guest

This worked great! Thanks!

Ember

Harlan Grove said:
...
...

Two ways, depending on what you mean by 'null'. If you mean D5 contains
nothing, then use either =COUNTA(D5)=0 or =ISBLANK(D5). If you mean D5
contains nothing OR evaluates to "", use =COUNTBLANK(D5)=1.
 

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