Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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