Forum Discussion
Dynamic Top10 list
Hi community
I am having a problem and i can't seem to find an answer.
I have a dataset with the following columns:
Customer, Region, Department, Salesman, Sales last year, Sales this year
The user need to be able to filter on: Region, Department, Salesman
The result i want is a top10 list of best customers which fit the criteria. For example if they choose the region: "Jylland", and Salesman "Karl", it should give me the 10 best customers in "Jylland" with "Karl". If i choose "Karl" and "Erik" as salesman, i want it to give me the top ten between them.
The measure i have tried is this:
combined with another RANKX
Which gives me the right result, but i cannot remove the blanks in it.
2 Replies
- vivran22Community Champion
Hey ChristianHE ,
Will visual level filter solve your purpose?
You can use multiple slicer/filters
Cheers!
Vivek
Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter- stevedepMemorable Member
Hi,
You can try;
If (___yourrankmeasure <= 10 , ___yourankmeasure , blank() )
Kind regards Steve