• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Week Num Function

tinumathews

New Member
Hi, I need help here... My weeknum function gives me the week number. Lets say that the date is Feb 3, 2012, weeknum will show the number as "6", Is there any way that the cell shows Feb week 1, Mar week 3 and so on....
 
Hi, tinumathews!

Weeknum function retrieves a number, so you can't do it just with this function. Supposing your date is in A2, try this:

=CONCATENATE(TEXT(MONTH(A2),"mmm")," ",TEXT(WEEKNUM(A2),"00"))

Regards!
 
Back
Top