Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
RJW
Contributor III
Contributor III

Only show totals above a certain amount?

I have a pivot table in QlikView and would only like to show the information for Client ID's that have an amount in any of the expressions over 2,000. 

In this case, I don't care about client 7564 and the one row for client 6633 and don't want them to be shown at all.

Snag_32fce784.png

1 Solution

Accepted Solutions
Or
MVP
MVP

You'd need something like:

If(Max(Aggr(Sum(Sales),[Client ID],[Date],[Sold Deal Date]))>2000,Sum(Sales))

I can't check this without sample data, which I am not able to generate at the moment and was not included in the post, but even if it's not precisely what you need it will hopefully nudge you in the right direction.

View solution in original post

1 Reply
Or
MVP
MVP

You'd need something like:

If(Max(Aggr(Sum(Sales),[Client ID],[Date],[Sold Deal Date]))>2000,Sum(Sales))

I can't check this without sample data, which I am not able to generate at the moment and was not included in the post, but even if it's not precisely what you need it will hopefully nudge you in the right direction.