Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
neha_sri
Creator III
Creator III

Find month name from week number

Hi,

I have week number and I want to calculate month name from it.Can I do so...

4 Replies
Anonymous
Not applicable

You can, but week number is not enough.

First, week may belong to two months, so you need to tell what day of the week defines the month - Monday, or Sunday, or....

Second, you need to know the year.  Same week number could be in different months in the different years.

alematex
Partner - Contributor III
Partner - Contributor III

=MakeWeekDate(2014,34)

returns last monday

alematex
Partner - Contributor III
Partner - Contributor III

MakeWeekDate(2014,34,3)

returns thursday 0-Monday 6-Sunday

MarcoWedel

Hi,

using a combination of MakeWeekDate and MonthName delivers the month name:

=MonthName(MakeWeekDate(Year, Week))

QlikCommunity_Thread_130646_Pic1.JPG.jpg

QlikCommunity_Thread_130646_Pic2.JPG.jpg

hope this helps

regards

Marco