This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have a problem with the measure. The measure calculates products that are not in the top 20 but in totals it shows 0, so you can not see the data in the column chart
Solved! Go to Solution.
hi, @krzysztof
This looks like a measure totals problem. Very common. See this post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
And for your case, just do some adjust as below:
1.[Top 20] is not a rank measure, It's better to adjust Non-Top 20 measure like this:
Non-Top 20 = IF([Top 20]=BLANK(),SUM('Table 1'[Value]),0)
2. add a measure like below for sum Non-Top 20.
Measure 2 = var _table=SUMMARIZE('Table 1','Table 1'[Name product],"_Value",CALCULATE(SUM('Table 1'[Value]))) return
SUMX(_table,[Non-Top 20])
Result:
Best Regards,
Lin
hi, @krzysztof
This looks like a measure totals problem. Very common. See this post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
And for your case, just do some adjust as below:
1.[Top 20] is not a rank measure, It's better to adjust Non-Top 20 measure like this:
Non-Top 20 = IF([Top 20]=BLANK(),SUM('Table 1'[Value]),0)
2. add a measure like below for sum Non-Top 20.
Measure 2 = var _table=SUMMARIZE('Table 1','Table 1'[Name product],"_Value",CALCULATE(SUM('Table 1'[Value]))) return
SUMX(_table,[Non-Top 20])
Result:
Best Regards,
Lin
Check out the May 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 |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 44 | |
| 41 | |
| 21 | |
| 18 |