This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 28 | |
| 23 | |
| 22 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 29 | |
| 23 | |
| 22 |