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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Ice1341
Helper I
Helper I

Trying to calculate 5% of total row

I want to customize a percentage of the total row. How can that be accomplished? I have a column set for the specific percentage.

customersalesadsdamagesTotalPct.Broker Comm
Jan    5,000.00   (200.00)     (50.00)  4,750.00         0.05237.5
Feb    7,000.00   (100.00)     (75.00)  6,825.00         0.05341.25
Mar  10,000.00   (500.00)     (25.00)  9,475.00         0.05473.75
1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @Ice1341 

if you want to create it by measure, use this,

vxiaotang_2-1627025595945.png

Measure = MIN('Table'[Total])*MIN('Table'[Pct.])

result

vxiaotang_0-1627025516367.png

and if by column, use this,

vxiaotang_3-1627025702018.png

Column = 'Table'[Total] * 'Table'[Pct.]

result

vxiaotang_4-1627025734952.png

 

Any question, please let me know. looking forward to receiving your reply.

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @Ice1341 

if you want to create it by measure, use this,

vxiaotang_2-1627025595945.png

Measure = MIN('Table'[Total])*MIN('Table'[Pct.])

result

vxiaotang_0-1627025516367.png

and if by column, use this,

vxiaotang_3-1627025702018.png

Column = 'Table'[Total] * 'Table'[Pct.]

result

vxiaotang_4-1627025734952.png

 

Any question, please let me know. looking forward to receiving your reply.

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Ice1341 , are sales, ads, damages are in rows?

Because if they are columns 

 

Total = Sum(Table[sales]) + Sum(Table[ads]) +  sum(Table[damages])

 

% = [Total] *.05

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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