Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
felix_kraemer
Contributor III
Contributor III

How to display all pivot columns?

Dear all,

I hope someone can help me. 

I have attached expample where I want to show the SUM(Value) for all Spaces and all CALDate in below pivot.

What should I do to display CALDate 06.01.2020 where no Space has any values?  

Thank you,

Felix 

clipboard_image_0.png

Labels (2)
1 Solution

Accepted Solutions
StarinieriG
Partner - Specialist
Partner - Specialist

Hi,

 

to do that, you have to create rows.

 

For example you could try in this way:

 

NoConcatenate
TEMP:
LOAD
Date
Resident MasterCalendar;

Left Join (TEMP)
LOAD distinct
Space
Resident testtable;

Left Join (TEMP)
LOAD *
Resident testtable;

Drop Table testtable;

View solution in original post

2 Replies
StarinieriG
Partner - Specialist
Partner - Specialist

Hi,

 

to do that, you have to create rows.

 

For example you could try in this way:

 

NoConcatenate
TEMP:
LOAD
Date
Resident MasterCalendar;

Left Join (TEMP)
LOAD distinct
Space
Resident testtable;

Left Join (TEMP)
LOAD *
Resident testtable;

Drop Table testtable;

felix_kraemer
Contributor III
Contributor III
Author

Hi StarinieriG,

Thats perfect, thank you very much.

Felix