Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Lowest avg benchmark , results effected by dimension filtering

Hi everyone ,

Here is my expression which gives me lowest sale profit avg which is used as benchmark lower bound

Min(

Aggr(

Avg({$<Saleman=>}TOTAL <Saleman> sale_profit)

,Saleman)

)

But the problem is when I filter Saleman dimension by selecting some Salesman this expression does not ignore that selection and calculate lowest avg of selected salesman, Whereas ideally it should be fixed throughout the selection as it is assumed to be used as benchmark.Any help is really appreciated.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try:

Min({$<Saleman=>}

Aggr(

Avg({$<Saleman=>}TOTAL <Saleman> sale_profit)

,Saleman)

)


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

Try:

Min({$<Saleman=>}

Aggr(

Avg({$<Saleman=>}TOTAL <Saleman> sale_profit)

,Saleman)

)


talk is cheap, supply exceeds demand
swuehl
MVP
MVP

Try

Min({<Saleman=>}

Aggr(

Avg({$<Saleman=>}TOTAL <Saleman> sale_profit)

,Saleman)

)

Not applicable
Author

Thanks a lot...You really have great expertise...