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
 
I guess the only other alternative is this.

Excel Formula:
=AND((TODAY() - 14)> AA3,AA3<>"")
ok cool. Yeah still highlights when i put a date in AB. All g mate though still works well
 

Attachments

  • Capture.PNG
    Capture.PNG
    13 KB · Views: 2
Upvote 0

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I think you want to compare the date difference in AA and AB? If the difference is 14 days then highlight? If so I'm not sure why the need for TODAY()?
 
Upvote 0
I think you want to compare the date difference in AA and AB? If the difference is 14 days then highlight? If so I'm not sure why the need for TODAY()?
yeah basically what i need is that when they put the date in AA they need to contact the member within 14 days. If they dont then the cell AB will highlight to prompt them to call. once the put a date in AB that means they have made the call, it wont need to highlight
 
Upvote 0
I think I understand what you want re-reading the thread. Try
Excel Formula:
=AND(TODAY()-AA3>14,AB3="")
 
Upvote 0
I think I understand what you want re-reading the thread. Try
Excel Formula:
=AND(TODAY()-AA3>14,AB3="")
that worked BUT it re highlighted the blanks hahah
 

Attachments

  • Capture.PNG
    Capture.PNG
    14.4 KB · Views: 1
Upvote 0
Ok, How about this? Left out the blanks when testing.
Excel Formula:
=AND(TODAY()-AA3>14,AB3="",AA3<>"")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,212
Messages
6,123,656
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