Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have table with two count types - Coaching & Headcount. I am trying to get a measure that will divide ( sum of coaching / sum of headcount) See attached.
Example, Under Location Chandler
Chandler | Coaching | Headcount | Calculation Needed w Measure |
9/1/2020 | 71 | 728 | .0975 |
10/1/2020 | 303 | 737 | .4111 |
11/1/2020 | 111 | 752 | .1476 |
12/1/2020 | 252 | 727 | .3466 |
Solved! Go to Solution.
@jcastr02
Add this as a new measure:
Measure =
DIVIDE(
CALCULATE( SUM(Table[Count]), Table[Count Type] = "Coaching"),
CALCULATE( SUM(Table[Count]), Table[Count Type] = "Headcount")
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
You posted this question in the Power Query forum. Are you looking for an answer to apply in Power Query? It's really NOT the best tool for this job. @Fowmy seems to have the best suggestion: build this solution with DAX measures, not in Power Query.
Proud to be a Super User! | |
@jcastr02
Add this as a new measure:
Measure =
DIVIDE(
CALCULATE( SUM(Table[Count]), Table[Count Type] = "Coaching"),
CALCULATE( SUM(Table[Count]), Table[Count Type] = "Headcount")
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.