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.
Good afternoon.
I'd like to ask for help with a topic I'm trying to accomplish.
This is a table that has the following structure.
Need to display only top 10 records when ever any filter is applied and this table should dynamiclly change.
Highlighted 10 records should be display and country name can be duplicate no worries.
expected result to show only highlighed in the red box.
Please guide me to filter. attached Top 10 filter file .pbix file link for your reference.
@Greg_Deckler @Ritaf1983 @lbendlin @Ashish_Mathur @ryan_mayu @danextian @_AAndrade @vicky_ @audreygerred @rajendraongole1
Hi @PowerBiTech
Thanks for the reply from @vicky_ , please allow me to provide another insight:
Here I create a new measure:
MEASURE =
VAR _currentCustomName =
SELECTEDVALUE ( DimCustomers[Customer Name] )
VAR _vtable =
SELECTCOLUMNS (
ALLSELECTED ( 'DimCustomers' ),
'DimCustomers'[Customer Name],
"Total", [Total Sales]
)
VAR _vtable2 =
TOPN (
10,
ADDCOLUMNS ( _vtable, "_Rank", RANKX ( _vtable, [Total],, DESC ) ),
[Total]
)
RETURN
MAXX ( FILTER ( _vtable2, _currentCustomName = [Customer Name] ), [Total] )
Then add the measure to the table, the result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Thank you so much for your quick response .
I have tried to apply the same measure into my orginal data and unable to get the expected result.
Total score is a calculated measure column.
Red box should be the output result.
Subdivision and Total score can be duplicate.
Please suggest me to get this output.
You should be able to use the built-in top-10 filter:
go to country, change Filter type to Top N, set N = 10 and use your sales measure in the "By Value" section
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |