Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I'm having a brain failure at the moment and I can't quite figure out the logic behind how BI determines the Top N from a list with some duplicates:
Can someone explain how there are 4, when I've asked for the top 3 and there are only 2 distinct values there; 11 & 5?
I assume it's because there are 3 distinct 'location' properties, but this doesn't make sense to me when I've only asked for top 3 Fruit by Qty
Solved! Go to Solution.
Hi @jraward,
So for the last tow friuts, which one would like to show in your table?
This TOP function return the row that rank value =1, 2, 3
Then rank value for the last two friuts=3, so both of them will be show in your table. If you need only one friut display on your table, you need to add another condition to filter it.
Regards,
Charlie Liao
Hi @jraward
Just restating what @v-caliao-msft has said:
A TopN Visual Level Filter in your example works by listing the values of Fruit in descending order of Qty (with tied Fruit ordered arbitrarily), then if the 3rd fruit is within a tied group, all items from that group are included (i.e. TopN cannot break ties).
This is the same behaviour as the TOPN DAX function.
You could also interpret a TopN filter on Fruit as
"Include only the Fruit that have fewer than N Fruit ranked above them."
The DAX for this visual filter would look something like this without using the TOPN function:
FILTER ( ALLSELECTED ( Waller_test[Fruit] ), VAR QtyCurrentFruit = CALCULATE ( SUM ( Waller_test[Qty] ) ) VAR FruitGreaterThanCurrent = COUNTROWS ( FILTER ( ALLSELECTED ( Waller_test[Fruit] ), CALCULATE ( SUM ( Waller_test[Qty] ) ) > QtyCurrentFruit ) ) RETURN FruitGreaterThanCurrent < 3 )
(ALLSELECTED is used since the Visual Level TopN Filter will operate in the context of any other Page/Report filters on Fruit that may exist)
Owen 🙂
Hi @jraward
Just restating what @v-caliao-msft has said:
A TopN Visual Level Filter in your example works by listing the values of Fruit in descending order of Qty (with tied Fruit ordered arbitrarily), then if the 3rd fruit is within a tied group, all items from that group are included (i.e. TopN cannot break ties).
This is the same behaviour as the TOPN DAX function.
You could also interpret a TopN filter on Fruit as
"Include only the Fruit that have fewer than N Fruit ranked above them."
The DAX for this visual filter would look something like this without using the TOPN function:
FILTER ( ALLSELECTED ( Waller_test[Fruit] ), VAR QtyCurrentFruit = CALCULATE ( SUM ( Waller_test[Qty] ) ) VAR FruitGreaterThanCurrent = COUNTROWS ( FILTER ( ALLSELECTED ( Waller_test[Fruit] ), CALCULATE ( SUM ( Waller_test[Qty] ) ) > QtyCurrentFruit ) ) RETURN FruitGreaterThanCurrent < 3 )
(ALLSELECTED is used since the Visual Level TopN Filter will operate in the context of any other Page/Report filters on Fruit that may exist)
Owen 🙂
Hi @jraward,
So for the last tow friuts, which one would like to show in your table?
This TOP function return the row that rank value =1, 2, 3
Then rank value for the last two friuts=3, so both of them will be show in your table. If you need only one friut display on your table, you need to add another condition to filter it.
Regards,
Charlie Liao
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
107 | |
98 | |
39 | |
34 |
User | Count |
---|---|
151 | |
122 | |
76 | |
74 | |
50 |