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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
ali_hijazi
Partner - Master II
Partner - Master II

hiding rows from a pivot table

Hello I got a pivot table that shows the sales by country, brand, and branch

I want to hide rows where sales is less than $ 500

is this possible?

Please advise

I can walk on water when it freezes
6 Replies
Not applicable

You can write it in the expression.  For example:

Sum({$<Sales={'>=500'}>} Sales)

ali_hijazi
Partner - Master II
Partner - Master II
Author

No no

I meant to hide the sum(sales) not when the amount in the original table

I can walk on water when it freezes
Not applicable

if(Sum(Sales)>=500,Sum(Sales)) then Suppress Nulls

ali_hijazi
Partner - Master II
Partner - Master II
Author

sounds good but for complex expressions I have to risk performance

I can walk on water when it freezes
Not applicable

Have you found an answer to hiding specific rows in a pivot table? I am trying to do the same thing. Thanks!

johnw
Champion III
Champion III

I'm not thinking of a better way than what was presented.  While I don't know this to be the case, I suspect that QlikView will be smart enough to realize it's already done the exact same summation, and just pull the result from the cache, rather than calculating the exact same thing twice.  If instead of sum(Sales) you have some huge expression, consider making a variable so that you don't have to work to keep the two parts of the expression in sync.