Rolling Date excluding weekends

Figjam

New Member
Joined
Jul 16, 2013
Messages
9
I'm totally unsure what the solution to this is so please if there any suggestions it would be greatly appreciated :)
I'm trying to have a two week rolling dates, starting on the Monday and continuing until the following Friday, this is fine if static but when the start date is then Tuesday, Wednesday etc the week then inculdes either the Saturday or Sunday. From using =TODAY(), how do I populate the next ten working days without including the weekends?:eeek:
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Welcome to the Board!

Maybe something like this:


Cell Formulas
RangeFormula
B2=TODAY()
B3=TEXT(B2,"dddd")
B4=WEEKDAY(B2)
C2=IF((WEEKDAY(B2)+1)=7,B2+3,IF((WEEKDAY(B2)+1)=1,B2+2,B2+1))
C3=TEXT(C2,"dddd")
C4=WEEKDAY(C2)
D2=IF((WEEKDAY(C2)+1)=7,C2+3,IF((WEEKDAY(C2)+1)=1,C2+2,C2+1))
D3=TEXT(D2,"dddd")
D4=WEEKDAY(D2)
E2=IF((WEEKDAY(D2)+1)=7,D2+3,IF((WEEKDAY(D2)+1)=1,D2+2,D2+1))
E3=TEXT(E2,"dddd")
E4=WEEKDAY(E2)
F2=IF((WEEKDAY(E2)+1)=7,E2+3,IF((WEEKDAY(E2)+1)=1,E2+2,E2+1))
F3=TEXT(F2,"dddd")
F4=WEEKDAY(F2)
G2=IF((WEEKDAY(F2)+1)=7,F2+3,IF((WEEKDAY(F2)+1)=1,F2+2,F2+1))
G3=TEXT(G2,"dddd")
G4=WEEKDAY(G2)
H2=IF((WEEKDAY(G2)+1)=7,G2+3,IF((WEEKDAY(G2)+1)=1,G2+2,G2+1))
H3=TEXT(H2,"dddd")
H4=WEEKDAY(H2)
I2=IF((WEEKDAY(H2)+1)=7,H2+3,IF((WEEKDAY(H2)+1)=1,H2+2,H2+1))
I3=TEXT(I2,"dddd")
I4=WEEKDAY(I2)
J2=IF((WEEKDAY(I2)+1)=7,I2+3,IF((WEEKDAY(I2)+1)=1,I2+2,I2+1))
J3=TEXT(J2,"dddd")
J4=WEEKDAY(J2)
K2=IF((WEEKDAY(J2)+1)=7,J2+3,IF((WEEKDAY(J2)+1)=1,J2+2,J2+1))
K3=TEXT(K2,"dddd")
K4=WEEKDAY(K2)


HTH,
 
Upvote 0

Forum statistics

Threads
1,223,101
Messages
6,170,116
Members
452,302
Latest member
TaMere

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