Conditional Formatting

D Willett
SilverLounger
Posts: 1728
Joined: 25 Jan 2010, 08:34
Location: Stoke on Trent - Staffordshire - England

Conditional Formatting

Post by D Willett »

Hi.

The following Conditional Formatting formula's:

=D4=TODAY()

=D4<TODAY()

=AND(D4-TODAY()>=0,D4-TODAY()<=30)

Can I ask for assistance on these? I need the expressions to ignore empty cells?

TIA
Cheers ...

Dave.

User avatar
StuartR
Administrator
Posts: 12604
Joined: 16 Jan 2010, 15:49
Location: London, Europe

Re: Conditional Formatting

Post by StuartR »

How about

Code: Select all

=AND(D4<>"",D4<TODAY())
StuartR


D Willett
SilverLounger
Posts: 1728
Joined: 25 Jan 2010, 08:34
Location: Stoke on Trent - Staffordshire - England

Re: Conditional Formatting

Post by D Willett »

Perfect StuartR Thank You...
Cheers ...

Dave.