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: 
senthilkumar_c1
Contributor
Contributor

Ignore selection in Set Analysis

Hi Experts,

I Want to ignore the branch selection in the below expression

Max(Aggr(sum(DISTINCT Area_Defect),Currentweek))

I have tried with below expression but its not working , Can anybody please  suggest a solution for this

Max(Aggr(sum({<Branch=>}DISTINCT Area_Defect),Currentweek))

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Most of the time, you need to use the set expression in both inner and outer aggregation functions:

Max({<Branch=>} Aggr(sum({<Branch=>} DISTINCT Area_Defect),Currentweek))


Set Analysis in the Aggr function

View solution in original post

2 Replies
swuehl
Champion III
Champion III

Most of the time, you need to use the set expression in both inner and outer aggregation functions:

Max({<Branch=>} Aggr(sum({<Branch=>} DISTINCT Area_Defect),Currentweek))


Set Analysis in the Aggr function

senthilkumar_c1
Contributor
Contributor
Author

Hi Stefan,

Its working . Thanks for your immediate response .