Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all, this is my first post.
Need help trying to limit a dimension. I have created a chart and limit the chart to only show sales people in the top volume region.
I can find my top region by using =FirstSortedValue( region , -aggr( count(ordernumber), region ) )
But i don't know how to limit this to only show sales people in the top region. any help would be appreciated.
May be this as your calculated dimension
Aggr(If(Count(ordernumber) = Max(TOTAL Aggr(Count(ordernumber), region), region), region)
If displaying one region is what you always want then just create 2 expressions like the below
Exp1 : FirstSortedValue( region , -aggr(count(ordernumber),region))
Exp2: sum({<region={$(=FirstSortedValue( region , -aggr(count(ordernumber),region)))}>}sales)
Count({<region= {"=rank(Count(ordernumber),4)<= 10"}>} ordernumber)
Hi Sunny,
I need to display all of the sales people in the top region though. I don't believe this would do it.
Hi Susant, sorry i wasnt being clear. i need to show all of the sales people in that region with a count of all of their sales.
Hi Fawaz, Sorry I wasn't being clear. i need to display all of the sales people in that top region and a count of all of their sales.
May be this
Aggr(If(Count(ordernumber) = Max(TOTAL <region> Aggr(Count(ordernumber), region), SalesPerson), region, SalesPerson)
Hi Sunny, I tried that to and getting an error in expression