conditional formatting

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

Guest

I am doing a CF for expiration dates, I am using the "cell value is" method
to determine if the date is expired, however, it is highlighting any blank
cell as well. Is there a way to prevent the hilighting of blank cells?
 
Use formula is instead,

=AND(A2<>"",A2>--"02/10/06")

as an example



--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)
 
An empty cell formatted as a date equates to 01/00/00.

So, if your CF formula might look like this:

=A1<=Today()
Revise it to something like this:
=And(A1<>"",A1<=Today())
 

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

Back
Top