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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pivot Table

Hi friends, I have a question:

I have a pivot table with 4 fields: Country, Code, Person, Sales.

I want to get a new table with records of the above pivot table that sales is greater than 10000$.

I need to report new table by Email or PDF file.

TNX

Labels (1)
1 Reply
marcus_sommer
MVP
MVP

You will need a calculated dimension as filter in one of your dimension for this, like:

if(aggr(sum(Sales), Country, Code, Person)>10000, Country)

and then hiding NULL within this dimension: Calculated Dimensions

- Marcus