Formating Week numbers into week range

maic15

Active Member
Joined
Nov 17, 2004
Messages
313
I have a week number of 45, which is equal to 10/31/05 - 11/04/05. ( Business days, from Monday - Friday).

How do I translate 45 into the following string in my cell "10/31/05 - 11/04/05"?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
The following formula will return a text string of "10/31/05 - 11/06/05" if you enter the number 45 in cell A1. This is based on using serial date number 38348 (12/27/04) as the starting point for counting weeks.


=TEXT(38348+(A1-1)*7,"mm/dd/yy")&" - "&TEXT(38348+(A1-1)*7+4,"mm/dd/yy")
 
Upvote 0
Typo, sorry. The formula is correct the displayed text shows the wrong results. The formula results should be "10/31/05 - 11/04/05".
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,342
Members
448,570
Latest member
rik81h

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