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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to hide the Unselected values in pivot table

Hi,

I am using pivot table

ProductName Sum (CountingUnits)Sum ({$1}CountingUnits)
AGX0.0020880.00
AS10604950.0010604950.00
COGRELH0.0057540.00
CLO0.001110.00
CO0.002071520.00
GS0.00130830.00
ITOR0.001157500.00
PETIN0.00529700.00
PVIX0.00807184.00
TAAL0.00680800.00
TRO0.00174100.00


I have selected the AS in productname field ,it shows the AS value and other values(unselected) with 0.00 ,how to hide the other values showing 0.00

pls,,,help me out.Thanks in advance

3 Replies
Not applicable
Author

Hi btechrames,

I'm not sure about your question. But let me guess.

You can try check "Supperess When Value is null" in Dimension tab and check "Suppress Zero-Values" in Presentation tab.

Hope this help,

Tatar

Not applicable
Author

Hi btechrames,

I m not sure about your question

If your dimension is ProductName and expression is Sum (CountingUnits) then pivot table sould be as u wants.

if u got problem then post ur app here

thanks

zaman

johnw
Champion III
Champion III

For your second expression:

if(sum(CountingUnits),sum({1}CountingUnits))

Basically, only calculate your second expression if the first expression is established. That way, BOTH fields will be 0 for the unselected values, so the row can be suppressed. As long as one expression has a non-zero value, you can't suppress those rows.