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 WANT TO FILL ALL ROWS OF COLUMN (Top1Sales), WITH THE MAX VALUE OF COLUMN(Sales), IN THIS CASE 14230.
Measures created:
Sales= SUM(table[sales])
Ranking= RANKX(ALL(Dcalendario[Month]);[sales];;DESC)
Top1Sales =
Var
Ranking=VALUES(Dcalendario[Month])
return
CALCULATE([sales];TOPN(1;ALL(Dcalendario[Month]);[sales]);Ranking)
Solved! Go to Solution.
HI @Anonymous,
Based on your description, you want to get the max sales, right?
If this is a case, you can try to use below measure:
Top1 Sales = MAXX(SUMMARIZE(ALLSELECTED('Table'),[Month],"Total",SUM('Table'[Sales])),[Total])
BTW, I'm not recommend you to direct combine use measures who contains the specific filters.
Regards,
Xiaoxin Sheng
HI @Anonymous,
Based on your description, you want to get the max sales, right?
If this is a case, you can try to use below measure:
Top1 Sales = MAXX(SUMMARIZE(ALLSELECTED('Table'),[Month],"Total",SUM('Table'[Sales])),[Total])
BTW, I'm not recommend you to direct combine use measures who contains the specific filters.
Regards,
Xiaoxin Sheng
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 |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 21 |