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