Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mariamovasheli
Contributor III
Contributor III

Limitations Of Dimensions

Hello,

I Want to limit Number of dimensions Shown on charts. but I use Growth rate as measure, and  when I go to limitations and Fixed numbers, then it Limit it with growth rate  but I want to limit with volume of sales.How It is possible to show top 5 companies with the largest volume of Sales but as measure to have Growth rate?  

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Something like

Sum(Aggr(If(Rank(Sum(-Sales)) <= 5, ... growth expression ...), Company))


Insert your expression for growth and adapt as required to your environment

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Something like

Sum(Aggr(If(Rank(Sum(-Sales)) <= 5, ... growth expression ...), Company))


Insert your expression for growth and adapt as required to your environment

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
mariamovasheli
Contributor III
Contributor III
Author

It is exactly what I wanted Thank you very much