Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sushil353
Master II
Master II

Is it possible to hide a dimension in a chart (pivot table)??

Hi All,

I have created a pivot table i have 2 dimensions and 3 expressions... I want to hide the dimensions so that only expression is visible...

Is it Possible??

Thanks..

4 Replies
lironbaram
Partner - Master III
Partner - Master III

hei

you can't hide dimensions or expressions in pivot table only in stirght table

Not applicable

You can if you make the value calculated equal to 0.

For instance:

if(index( GetCurrentSelections(),'codpedido')>0,0,Sum (Costo_Diario_TLMK))

When no value of codpedido its selected, calculation appears. But, if you select at least one value of codpedido, the calculation disappears.

Regards

Anonymous
Not applicable

I use the next macro to "hide" columns in pivot:

sub Squeeze
call HideColumn("CH01", 2)
end sub
'
private sub HideColumn(ch, n)
set ch = ActiveDocument.GetSheetObject(ch)
ch.SetPixWidth (n-1), 0
end sub

Not applicable

how to hide  certain expressions,Chart Style:1.bmp