Skip to main content
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))

1 Solution

Accepted Solutions
swuehl
MVP
MVP

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
MVP
MVP

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 .