In a list of Wednesdays which is the next one?

skinnea

Board Regular
Joined
Mar 15, 2003
Messages
135
Office Version
  1. 365
Platform
  1. Windows
I have a list of Wednesday dates in column A. I want to conditionally format the list such that the next upcoming Wednesday is highlighted up until we are past it (ie the day after).

I’ve tried a bunch of IF AND NOT TODAY() formulas and had some success at identifying bits of the overall outcome (is today before or after each date), but can’t get a single formula to do the whole thing.

Can anyone put me out of my misery…?

Many thanks in advance!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
How about
Cell Formulas
RangeFormula
G3:G16G3=G2+7
Cells with Conditional Formatting
CellConditionCell FormatStop If True
G2:G16Expression=G2=WORKDAY.INTL(TODAY(),1,"1101111")textNO
That certainly looks to have done it… I’ll confirm next Thu 😊

Would you be able to explain what it’s doing please…?
 
Upvote 0
The string "1101111" represents days of the week running from Mon to Sun. The 1 signifies a weekend & the 0 a workday, so it will return the next Wed from today.
 
Upvote 0
Aah thank you.

Up to yesterday, the list highlighted this coming Wednesday.

Today ( which is now that Wednesday) the list highlights next Wednesday. :(
Is there a way to only do that after we’ve passed this Wednesday?

So I want it to highlight the next Wednesday on the list until we’ve reached and passed it.

(If it helps, it’s to show who’s chairing a meeting each Wednesday afternoon, hence the need for it to not change till Thursday ☺️
 
Upvote 0
Just subtract 1 from the date like
Excel Formula:
=G2=WORKDAY.INTL(TODAY()-1,1,"1101111")
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

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