Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

How to enable total at below row (percentage)

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

 

nuhasan_0-1687744566652.png

 

Expected

nuhasan_2-1687744967990.png

 

Regards,

Nuha

 

3 REPLIES 3
Dhairya
Solution Supplier
Solution Supplier

Hey @Anonymous 
Can you please explain how you have calculated the percentage that you have shown in the expected output?

Anonymous
Not applicable

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.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors