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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read 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.