Conditional formatting - highlight entire column when one cell contains date between today and 7 days prior

Kurtin

New Member
Joined
Jan 20, 2021
Messages
27
Office Version
  1. 365
Platform
  1. Windows
Hi there! I feel like I'm close to figuring this out... but if anyone has the answer to this, that would be very helpful


so, I'd like to format an entire column to be highlighted based on if the top cell contains a date that is less than today but greater than today-7 (in between today and 7 days prior) using the today function and I need it to continue to update which column is highlighted.

=E$1<today(),E$1>today()-7
this is what I tried using, which did not work obviously, the closest I got was using
=E$1>Today()-7
but this ended up highlighting everything after the first date.


thanks in advance!!!
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Try:

Excel Formula:
=AND(E$1>=TODAY()-7,E$1<=TODAY())
 
Upvote 0
Solution

Forum statistics

Threads
1,215,086
Messages
6,123,043
Members
449,092
Latest member
ikke

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