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! Don't miss your chance! Learn more
I created a table called SALES_MGR_NET_SALES to list the Sales Managers and their Sales with this DAX expression:
SALES_MGR_NET_SALES = SUMMARIZE(DIM_CUST_REP_HIER,DIM_CUST_REP_HIER[Sales Mgr],"Sales",sum(FACT_SLS[Net Sales]))
I want to use SALES_MGR_NET_SALES to create a Top 10 Sales Managers list. I created a second table TOP_TEN_SALES, which is suppposed to have the Top 10 Sales Managers, using this DAX expression:
TOP_TEN_SALES = TOPN(10,SUMMARIZE(SALES_MGR_NET_SALES,SALES_MGR_NET_SALES[Sales Mgr]),MAX(SALES_MGR_NET_SALES[Sales]))
However this results in the entire list of Sales Managers. How do I get it to limit it to the top ten?
Solved! Go to Solution.
That worked.
Thanks!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 44 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 102 | |
| 37 | |
| 26 | |
| 26 |