Formula to find the next Monday, Wednesday or Friday?

herbertlikesherbert

New Member
Joined
Feb 24, 2014
Messages
30
So I have a set date, let's say 17/08/2014, and I want the cell next to it to return the next Monday, Wednesday or Friday depending on which is next. Obviously it would return the 18/08/2014.

Then if the date was 18/08/2014 (or a Monday or Tuesday) I'd need it to find the next Wednesday, and so on for Friday.

Is there any way to do this?
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
column B is formatted as dddd

A B C D E F G
22-08-2014 vrijdag 25-08-2014 4 2
23-08-2014 zaterdag 25-08-2014 5 1
24-08-2014 zondag 25-08-2014
25-08-2014 maandag 27-08-2014
26-08-2014 dinsdag 27-08-2014



c1=
Code:
A1+VLookup(WEEKDAY(A1),$F$1:$G$7,2,0)
and drag down

See the file on this free dutch site (no registration needed)

http://www.mijnbestand.nl/Bestand-68Y6GEONGVB8.xls
 
Last edited:
Upvote 0
Special-K yours for me returns Tuesday, Thursday and Sunday, though I think I should be able to work out a simple fix. What do these {} brackets do?

Oeldere, that seems a bit complicated, downloaded the excel file, what do the numbers to the right do?
 
Upvote 0
@herbertlikesherbert

it is a table which will tell which day (6 = friday, 7 is saterday) it is.

the second column add the days (1,2 or 3) to the date.

I use VLookup to find the dates which has to be added.

Hope I explained well (enough).
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

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