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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.