Highlight Date in one cell 14 days after date in another whilst leaving Empties blank

Mista_sav

Board Regular
Joined
Aug 18, 2019
Messages
69
Office Version
  1. 2016
Platform
  1. Windows
  2. Web
Hi im having trouble. Ive used a few formulas but the best i could get was it would highlight the cell (AB) if the date was greater than 14 days (AA) BUT it also highlighted all the blanks as well which isnt ideal.

The formula i used was

=AND(AA3<=(TODAY()-14),AB3="")

Any ideas to only highlight the cells where there is a date input in AA?
Capture.PNG
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try
Excel Formula:
=AND((TODAY() - AA3)>= 14,AA3<>"")
 
Upvote 0
is it possible that if there is a date input that is LESS than the 14 days it wont highlight red?
 
Upvote 0
Try remove the equal sign
Excel Formula:
=AND((TODAY() - AA3)> 14,AA3<>"")
 
Upvote 0
is it possible that if there is a date input that is LESS than the 14 days it wont highlight red?
Maybe I didn't understand this statement.
Less than 14 days from Today?
OR
Today -14 days, and anything less than this day?

Would be helpful to show some examples.
 
Upvote 0
so if AA greater than 14 days AND AB is blank (No date input) then highlight AB. Sorry i should have specified. If they put a date in column AB then it doesnt need to highlight.
 
Upvote 0
I guess the only other alternative is this.

Excel Formula:
=AND((TODAY() - 14)> AA3,AA3<>"")
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,664
Members
449,114
Latest member
aides

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