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

How to Hide first Calculated dimension with pivot table

Hi Experts,

how to Hide first Dimension in Pivot table

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

There is no default way to hide the dimension in Pivot table.

You can tell us what you want to achieve doing that.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Clever_Anjos
Employee
Employee

Would you mind sharing a screenshot or a mockup of what you´re trying to do?

Anonymous
Not applicable
Author

Hi Kaushik,

I tried to write in Macro that is working fine .

I am looking for UI and script level....below my macro code


sub Squeeze

call HideColumn("CH01", 1)

end sub

'

private sub HideColumn(ch, n)

set ch = ActiveDocument.GetSheetObject(ch)

ch.SetPixWidth (n-1), 0

end sub