Convert week number to date

stepan1987

Board Regular
Joined
May 6, 2011
Messages
92
Guys,
How can I convert week numver 1,2,3,4,5,6,7,8 and year 2011 into date (ex. sunday of that week)?

Thanks !
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
=D7+((D8-1)*7)+(LOOKUP(D9,{"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday";1,2,3,4,5,6,7}))

Works assuming D7 contains 1/1/2011 (first day of the year as a date - you could replace that with the serial number of that date if you wanted to)
D8 Contains the week number
D9 contains the name of the day you want of that week

This assumes week 1 starts on 1/1 and finishes on the following Saturday and so on - if you have a different definition you need to do something different
 
Upvote 0
Hello,

I am having trouble converting my week numbers back into specific date.

Ex.

Cell A2 = 35

So what I need is to have week 35 converted into the first Monday date of the week, which would give me 08/22/11

Thanks
 
Upvote 0
=40544+((A2-1)*7)-WEEKDAY(40544,3)

Should do it I think

40544 is the serial date for 1/1/2011

Weekday(40544,3) evaluates to 5
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,258
Members
452,901
Latest member
LisaGo

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