ISBLANK question conditional formatting

LordEvil

New Member
Joined
Oct 20, 2018
Messages
16
Hi, I have a lot of dates from D3:D54. I would like to set up conditional formatting to show them red if they are past due. How can I make the blank cells not show any color format?

I must be close but am just missing something. I've tried searching with no luck.

ISBLANK(D3,"")=IF(D3<TODAY()) This doesn't work
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hi,

Start at D3 and select your range (I.e. D3:D54), CF, use formula, enter:

=AND(D3<>"",D3< TODAY())

Format Fill/Font as desired.
 
Last edited:
Upvote 0
Try this:

=AND(D3<>"",D3 < here your date)


defeated ;)
 
Last edited:
Upvote 0
Hi,

below can be an option :

=AND($D3 <> "",$D3 < TODAY())<today())<today())< html=""></today())<today())<>
 
Last edited:
Upvote 0
Thanks guys, that worked. I will have to read up on the AND function.


A detail, in the condition format you should not put the IF statement.
If the formula is true, then the cell lights up.

=AND(D3<>"",D3< TODAY())

In the previous example, if the 2 conditions are met, it is true.
 
Upvote 0

Forum statistics

Threads
1,213,532
Messages
6,114,177
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top