Multiple Conditional Formatting for Same Data

tjverdugo85

New Member
Joined
Dec 7, 2023
Messages
5
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
For my set of data (N6:AI1048576), I have applied multiple conditional formatting. It is for reporting dates.

So far, I have been able to:
  • Highlight dates where reports are overdue.
  • Highlight cells which contain "Submitted", "Accepted", and "N/A" (Those three selections are in a drop down I applied to the data, which is also editable so I could type in dates).
I am stuck on how to highlight dates when reports are due 0-30 days from today. I've tried multiple formulas, but nothing seems to be sticking.

image


image
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Welcome to the Board!

You will need to use the "Use a formula to determine which cells to format" option, and write a condition like:
Excel Formula:
=AND(N6-TODAY()>=0,N6-TODAY()<=30)
to check to see if the value in cell N6 is between 0 and 30 days from today (in the future).
 
Upvote 0
Solution
Welcome to the Board!

You will need to use the "Use a formula to determine which cells to format" option, and write a condition like:
Excel Formula:
=AND(N6-TODAY()>=0,N6-TODAY()<=30)
to check to see if the value in cell N6 is between 0 and 30 days from today (in the future).
Hello,

Thank you for the reply. I have tried this formula before and it works somewhat, but I only want it to highlight dates, and not all values (dates and text).
1701968523658.png
 
Upvote 0

Forum statistics

Threads
1,215,076
Messages
6,122,983
Members
449,092
Latest member
Mr Hughes

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