Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I would like to only show the topN rows in the table below. However, I need to be able to sort by the column headings to bring each of the different measures to the top. Any way that I can do this??
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample you can have a try.
1.create a irrelative table as a slicer .
2. create a measure and put it into the fields of Filter in this visual.
Top N =
VAR se =SELECTEDVALUE ( 'Table'[Column1])
RETURN
SWITCH( TRUE(),
se = "Net_sales",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Net_sales],SELECTEDVALUE('Table1'[Net_sales]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Controlled_sales",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Controlled_sales],SELECTEDVALUE('Table1'[Controlled_sales]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Units",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Units],SELECTEDVALUE('Table1'[Units]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Controlled_Unites",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Controlled_Unites],SELECTEDVALUE('Table1'[Controlled_Unites]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
BLANK()
)Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I created a sample you can have a try.
1.create a irrelative table as a slicer .
2. create a measure and put it into the fields of Filter in this visual.
Top N =
VAR se =SELECTEDVALUE ( 'Table'[Column1])
RETURN
SWITCH( TRUE(),
se = "Net_sales",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Net_sales],SELECTEDVALUE('Table1'[Net_sales]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Controlled_sales",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Controlled_sales],SELECTEDVALUE('Table1'[Controlled_sales]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Units",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Units],SELECTEDVALUE('Table1'[Units]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
se = "Controlled_Unites",
COUNTROWS(FILTER(ALL('Table1'),ISONORAFTER('Table1'[Controlled_Unites],SELECTEDVALUE('Table1'[Controlled_Unites]),DESC,'Table1'[Customer_No],SELECTEDVALUE('Table1'[Customer_No]),DESC))),
BLANK()
)Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!