Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Brownie
Contributor III
Contributor III

CrossTable with Month

Hey  I wanted to ask you whether how to convert The Given Excel sheet numbers or some kind of id perhaps into month names. Also i need to extract this data into months and dates according to the year dynamically into a Cross TableCapture.PNGCapture.PNG

Labels (3)
2 Replies
MayilVahanan

Hi

Try like below

Temp:
CrossTable(Month, SalesQuantity,2)
Load * from ursource;

Load BusinessArea, Product, SalesQuantity, MonthName(Num#(Month)) as MonthYear, Month(Num#(Month)) as Month Resident Temp;

DROP Table Temp;

 

Please confirm Month field is numeric or Text format after load into Qlik.

If its Text format, use Num#(Month)

If its numeric format, MonthName(Month) is fine.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Brownie
Contributor III
Contributor III
Author

I need to show all the missing days in it. How do i calculate the start and end effectively ?

Capture 3.PNGCapture 5.PNG