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 during Fabric Data Days. Don't miss your chance! Request 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])) )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!