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! Learn more

Reply
muggydaniel
New Member

PowerBi Column Values into %

Hi all 

 

I am attempting to display collumn values much like a pivottable "show values as % of collumn total" depending on if the rows are the same inside power query

 

For example: 

 

TeamTaskVolumes
Alpha Mailroom100
AlphaCustomer Calls500
MegaMailroom50
MegaCustomer Calls100
MegaOutbound Sales250

 

I would need to transform into the below table where the % of volumes for each team would sum to be 100% and each task has the appropiate % of volume complete out of everything they received. 

 

TeamTaskVolume %
AlphaMailroom17%
AlphaCustomer Calls83%
MegaMailroom13%
MegaCustomer Calls25%
MegaMailroom63%
1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

pls try this

Measure = 
     DIVIDE(
       SUM('Table'[Volumes]),
          CALCULATE(SUM('Table'[Volumes]),ALLEXCEPT('Table','Table'[Team]))
)

View solution in original post

1 REPLY 1
Ahmedx
Super User
Super User

pls try this

Measure = 
     DIVIDE(
       SUM('Table'[Volumes]),
          CALCULATE(SUM('Table'[Volumes]),ALLEXCEPT('Table','Table'[Team]))
)

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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