Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
piyush_s11
Creator
Creator

Qlik Sense Master Calendar

Hi,

I wanted to make a master calendar in which I wanted to evaluate Quarter, week etc. I have below 2 fields as date which only has month name & year. year consist of year + y letter preceded. please find below screenshot for 2 fields

clipboard_image_0.pngHow to create master calendar by using above fields. I want the script to create master calendar by using these 2 fields only. I don't have other date field. 

Thanks.

Labels (2)
3 Replies
miskinmaz
Creator III
Creator III

You can refer the below post

https://community.qlik.com/t5/QlikView-Scripting/Creating-A-Master-Calendar/td-p/341286

You just need to consider the Time field.

piyush_s11
Creator
Creator
Author

Hi Miskinmaz,

thanks for your reply. I have already tried that, unfortunately it is not working with my fields.

tresB
Champion III
Champion III

Try like:

Load
     Makedate(Year,num(Month)) as Date,
     Month,
     Year;
Load
     Month(Date#(Time, 'MMM')) as Month,
     Mid(Years,2,4) as Year
From <>;