Calculating 26 weeks from start date

nudepinksnake

New Member
Joined
Aug 6, 2010
Messages
1
Hi guys,

How can I create a formula that will calculate an end date for a period of 26 weeks when I already have a start date? The 26th week will always end on a friday. however, week one can be defined as any working day.

Thanks in advance!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi guys,

How can I create a formula that will calculate an end date for a period of 26 weeks when I already have a start date? The 26th week will always end on a friday. however, week one can be defined as any working day.

Thanks in advance!
If start date is in cell A1, this should give you the Friday 26 weeks later.
Code:
=CHOOSE(WEEKDAY(26*7+A1,1),26*7+A1-2,26*7+A1-3,26*7+A1-4,26*7+A1-5,26*7+A1-6,26*7+A1,26*7+A1-1)
 
Upvote 0
I think this should work, for a date in A2

=A2+7*26+5-WEEKDAY(A2,2)
 
Upvote 0

Forum statistics

Threads
1,215,176
Messages
6,123,464
Members
449,100
Latest member
sktz

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