get the week start date

  • Thread starter Thread starter squared chart area
  • Start date Start date
S

squared chart area

Hello,

I would like to know how can i get the start date of a given week number?
Any help on this?

Thanks in advance
 
It depends on your week numbering scheme: something along the lines of

=DATE(2007,12,24)+WkNum*7

That will give 12/31/2007 as the start date of week 1...

HTH,
Bernie
MS Excel MVP
 
Thanks A Lot Bernie for help, Nice idea.. works well
The weeks were in that formate: W33 (in cell A2)
So, I used
=value(mid(A2,2,2))
 
This should work for any year (just change the two occurrences of 2008 in my
formula to the year you want to calculate for; or, better still, make them
cell references and set the year value in that cell)...

=DATE(2008,1,1)-WEEKDAY(DATE(2008,1,1))-6+7*WkNum

It assumes the week starts on Sunday, If you want it to start on a Monday
(as Bernie's routine does), then change the -6 to a -5.

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top