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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hey Guys,
I'm working on a "tricky" case to build a customized measure but at the moment I'm struggeling.
Scenario:
I have a table/list with 3 different failure roots cause (let's assume 1) Material 2)Human Error 3) Machine). I would like to calculate the share of the different failure root causes and multiply them with a specific factor. Afterwards I would like to present this result (in %) in a bar chart.
My issue is that I don't know to caculate the first step with the share of the different root causes. My first attemt with COUNT the column with root causes leads to the result that every bar had the same value (what is logical).
So the basic questions is how to caculate the share between the single root causes?
Thank you very much for feedback guys!
Best Regards
Andreas
Solved! Go to Solution.
According to your description, you want to calculate the percentage of all failures for each single failure type. Right?
In this scenario, you just need to use ALLEXCEPT() to have your COUNTROWS() calculation group on each failure type. Please refer to sample below:
Percentage of All = CALCULATE(COUNTROWS(),ALLEXCEPT(Table1,Table1[Failure]))/CALCULATE(COUNTROWS(),ALL(Table1))
Regards,
According to your description, you want to calculate the percentage of all failures for each single failure type. Right?
In this scenario, you just need to use ALLEXCEPT() to have your COUNTROWS() calculation group on each failure type. Please refer to sample below:
Percentage of All = CALCULATE(COUNTROWS(),ALLEXCEPT(Table1,Table1[Failure]))/CALCULATE(COUNTROWS(),ALL(Table1))
Regards,
Hi @v-sihou-msft,
this is exactly what I'm was looking for! Excellent!
Thank you very much!
Best Regards
Andreas
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.