Conditional Formatting from current date

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am looking for a way to notify me of any date that exceeds todays date by 2 days

If at all possible I would like week days only, but not sure if this is too complicated

Many thanks
 
yes my confusion, sorry all works great now, thanks
 
Upvote 0

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi Guys,

First may I apologize for my own confusion last night

=AND(A3-TODAY()<2,WEEKDAY(A3,2)<6) works almost as I need it to but this will highlight (today 08/11/17 and 06/11/17 of which I would like to not be highlighted)

I need anything under 2 days of today() highlighted only

oh and if possible no blanks are to be highlighted

Many thanks and apologies once again
 
Last edited:
Upvote 0
Try
Code:
=AND(TODAY()-A3>2,WEEKDAY(A3,2)<6)
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,934
Members
449,094
Latest member
teemeren

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