Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
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! 🙂
Solved! Go to Solution.
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:
Hopefully this is what you are looking for.
Regards,
Tom
It didn't work for my dataset
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:
Hopefully this is what you are looking for.
Regards,
Tom
@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:
Hopefully this is what you are looking for.
Regards,
Tom
Thanks a bunch!!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
9 |