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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
Any suggestion to enable percentage for total of start, joint and end at below row? Please refer current and what i expected.
Current
Expected
Regards,
Nuha
Hey @Anonymous
Can you please explain how you have calculated the percentage that you have shown in the expected output?
Hi @Dhairya ,
We take Start as example.
start (%) = sum of start (unit) / sum of usage (unit)
Regards,
Nuha
Please trying this by creating following measures
total usage units = SUM(YourTableName[Usage units])
sum of usage = SUMX(ALLSELECTED('YourTableName'[Machine]),[total usage units])
total start units = SUM(YourTableName[start units])
sum of start (unit) = SUMX(ALLSELECTED('YourTableName'[Machine]),[total start units])
start (%) = IF(
ISINSCOPE([Machine]),
[total start units],
DIVIDE(sum of start (unit),
[sum of usage],
0
)
)
create similar measures for end and joint percentage
if still you are facing any issues please share dataset which I can copy and try on my system.