Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
plkinnera
Partner - Contributor
Partner - Contributor

Qliksense Pivot Table Issue

Hi ,

Based on requirement, I developed a vizlib pivot table. We used 4 dimensions. In those four used one dimension as expression by using only() and another dimension has converted into column as shown below. Here I am missing values in table.

Input data:

TypeProgramLevelstatus
dataDevelopmentLevel 1Completed
dataDevelopmentLevel 2Queue
dataDevelopmentLevel 2Progress
dataDevelopmentLevel 3Open
dataDevelopmentLevel 3hold

Current Table:

TypeProgramlevel 1level 2level 3
dataDevelopmentCompleted--

 

Expected result:

TypeProgramlevel 1level 2level 3
dataDevelopmentCompletedQueueOpen
dataDevelopment Progresshold

 

Thanks In Advance.

Labels (1)
1 Reply
Gui_Approbato
Creator III
Creator III

Try this:

Instead of using "data" as a measure, use it with an aggr function.

Replace the data field with aggr( Data, status). This might duplicate the rows and fill the fields with the correct values considering the rest of the table.