Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
nikhilgarg
Specialist II
Specialist II

Arranging column width in pivot table

Hello All,

Is it possible to arrange column width in pivot table in QlikSense?

10 Replies
Anonymous
Not applicable

Without extension, create a new field.

Load * inline

[

Measure

Revenue

Quantity

]

Use column [Measure] as a filter.

Use the condition if(getselectedcount(Measure)=1, if (Measure='Revenue', sum(Revenue),sum(Quantity)),0)

If both Revenue and Quantity is selected or if nothing is selected, it'll display zero. Or you could change the last condition to display what you like.