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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
calexander1337
Frequent Visitor

Summarizing two columns, Dividing them within a group

Hi all,

 

I'm unsure of how to phrase what I need, so I'll first attach an image of the desired result below:

Bold = Column Name

Italic = Record

 

helpme.PNG

 

This is my Competency Requirement table.  I want to be able to summarize the QTY Completed column grouped by each Competency, and then take that sum and divide it by the sum of the QTY Needed column.  The desired result is the % Completed column.

 

Using this image as an example, I summarized the QTY Completed for Requirement A and Requirement B where the Competency is Gold App Dev, and then divided that number by the QTY Needed for Requirement A and Requirement B where the Competency is Gold App Dev as well.

 

I know two summarizations with a division within a group by is not easy, and I appreciate any help that can be offered! 🙂

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

I created this measure:

Measure = 
CALCULATE(
    SUMX(
        VALUES('Table1'[Competency])
        , var completed = CALCULATE(SUM(Table1[QTY Completed]))
        var needed = CALCULATE(SUM(Table1[QTY Needed]))
        return
        DIVIDE(completed , needed)
    )
    ,ALL(Table1[Requirement])
)

Based on your sample data I can now create this table visual:

image.png

Hopefully this is what you are looking for.

 

Regards,

Tom

 

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

3 REPLIES 3
Navya_arun
New Member

It didn't work for my dataset

TomMartens
Super User
Super User

Hey,

 

I created this measure:

Measure = 
CALCULATE(
    SUMX(
        VALUES('Table1'[Competency])
        , var completed = CALCULATE(SUM(Table1[QTY Completed]))
        var needed = CALCULATE(SUM(Table1[QTY Needed]))
        return
        DIVIDE(completed , needed)
    )
    ,ALL(Table1[Requirement])
)

Based on your sample data I can now create this table visual:

image.png

Hopefully this is what you are looking for.

 

Regards,

Tom

 

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany


@TomMartens wrote:

Hey,

 

I created this measure:

Measure = 
CALCULATE(
    SUMX(
        VALUES('Table1'[Competency])
        , var completed = CALCULATE(SUM(Table1[QTY Completed]))
        var needed = CALCULATE(SUM(Table1[QTY Needed]))
        return
        DIVIDE(completed , needed)
    )
    ,ALL(Table1[Requirement])
)

Based on your sample data I can now create this table visual:

image.png

Hopefully this is what you are looking for.

 

Regards,

Tom

 

 


Thanks a bunch!! 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors