Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi all!
I am facing an issue to make my TOP5 table dynamic with my slicers.
I want to display the TOP5 customers based on sales, but I need that table to be dynamic depending on the selection of the slicers.
Customer | Sales |
A | 800 |
B | 500 |
C | 400 |
D | 100 |
E | 50 |
For now, my table is based on a "TOPN filter" in the filter pane. But I noticed that if I select something in the slicers at the top of the page (department, country, region etc) the TOPN will not be dynamic.
For example, if I select on my slicer country= Singapore, I would like to see the TOP5 customers in Singapore.
If I select country= Singapore and department= Asset Management, I would like to see the TOP5 customers in Singapore inside the department Asset Management.
Any recommendation please?
Many thanks!
Laura
@thelauraams , use topn with allselected
example
Top3 = calculate(sum(Table1[sales]),TOPN(3,allselected(table[Customer]),sum(Table1[sales]),DESC), values(table[Customer]))
Also, Refer
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
10 |