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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello community,
I have a problem and I think it would be not so hard, but I haven't yet experience with this tool.
I have a Matrix with following elements (from the visualizations pane)
If I select one month, I have (say)
| status | KO | OK | TOTAL | ||
| month | october | ||||
| customer | N | % | N | % | |
| AAA | 20 | 20% | 80 | 80% | 100% |
But If I select more than one month (say two) I need to have that every month sum up at 100% in every subtotal. Instead, I obtain the percentage of grand total and that's not what I want..
THere is a Measure I could create to achieve this goal?
Thanks in advance!
Solved! Go to Solution.
You can try to create a measure like below:
Measure =
var current_ = DISTINCTCOUNT('Table'[ID])
var total_per_month = CALCULATE(DISTINCTCOUNT('Table'[ID]),ALLEXCEPT('Table','Table'[Month]))
return DIVIDE(current_,total_per_month)
@Anonymous , Try a measure like
divide(count(Table[unique identifiers]) ,calculate( count(Table[unique identifiers]), removefilters(Table[Status])) )
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 41 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 150 | |
| 107 | |
| 64 | |
| 36 | |
| 36 |