Skip to main content
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?

1 Solution

Accepted Solutions
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.

View solution in original post

10 Replies
Anonymous
Not applicable

For the dimensions you can change it by simply clicking and dragging the column borders.

nikhilgarg
Specialist II
Specialist II
Author

Hey,

You are correct but i need to resize the width of measures.

Anonymous
Not applicable

I don't think that can be done. You could use a table though.

nikhilgarg
Specialist II
Specialist II
Author

Yup, using table as of now

nikhilgarg
Specialist II
Specialist II
Author

Do we have any feature to show and hide pivot table as per condition in qlik sense?

Anonymous
Not applicable

What kind of a condition? You can create two pivots in two different sheets and use navigation buttons to switch between them.

nikhilgarg
Specialist II
Specialist II
Author

I ahve a filter having values Revenue and Quantity. I want if Revenue selected then one pivot should be shown else other pivot showing quantity

Anonymous
Not applicable

Check this link:

http://branch.qlik.com/#!/project/56728f52d1e497241ae698a0

Create two pivots in two different sheets for Revenue and Quantity.

Insert two navigation buttons.

sheet navigation1.JPG

Set navigation action to 'Go to specific sheet'. Select the sheet. Do this for both buttons in two sheets.

sheet navigation.JPG

nikhilgarg
Specialist II
Specialist II
Author

Yup, that's possible with this extension but actually was trying without extension. ANyways thanks.