Change color in a blank cell based whether data has been entered by a given date.

mad28

New Member
Joined
Nov 16, 2009
Messages
2
I am new here so please bear with me...
I am trying to conditionally format a cell to change color based on whether the cell is blank or not. The trick is I need it to relate to a date in another cell and if it is 45 days prior to that date and the cell is still blank, then it would highlight red.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi and welcome,

Try using this as the formula in your conditional formatting:

=AND(A1="",B1-TODAY()<45)

where A1 is the cell with the formatting and B1 contains the date in question.
 
Upvote 0
Hi and welcome to the Board!!!

Not sure what you want, but here's how you might do it
Say your data cell is A1 and you Blank Cell is B1. In CF, use Formula Is for B1
You may need
Code:
=(Today()-45<$A1)*$B1="")or
 =($A1-45 < Today())*($B1="")<TODAY())*($B1="") p or<> or
=(A1+45>TODAY())*($B1="")
I'm not sure what you are after.
Good Luck
lenze
 
Upvote 0
Thanks! That worked. I was trying to use the isblank term in a formula and could not get anything to work.
 
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

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