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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Set-analisys in pivot table

Hallo!

In the attached example I'd like to show the rows of the pivot table only if the sum of the credits for a single customer is greather than its thresold: can someone help me to set the set_analisys formula?

Yhank you very much.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You can try like attached, checking in all your expressions if the sum(Credits) is applicable, e.g. in first expression of your sample

=if(column(2), sum(Invoice))

View solution in original post

4 Replies
swuehl
MVP
MVP

Try something like

if(Sum(Credit)>Threshold,sum(Credit))

Anonymous
Not applicable
Author

Well, you're right...the sample I gave is an extraction of my table which contains more fields in the expressions, so I think have to set the condition in the dimension field with the set_analysis. I apologize if I didn't post the correct example the first time.

Now I attached it.

Thank you.

swuehl
MVP
MVP

You can try like attached, checking in all your expressions if the sum(Credits) is applicable, e.g. in first expression of your sample

=if(column(2), sum(Invoice))

Anonymous
Not applicable
Author

Very good!! Thank you very much.