Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
So here's a simple problem that for some reason isn't working for. I want to simply dvide the summzed left value by the summed right value seen below in a measure. A column will not work for me because I group this different ways, by day, month, week, etc. It needs to happen at the matrix level. I feel like this should be a simple HoursonSite / PayrollHoursworked, but the fields don't show up. What am I missing?
Solved! Go to Solution.
The fields only show up if they are measures. Just add an additional Sum Measure for each of your two columns. Then just divide the two measures:
Hours = SUM('Query1'[HoursOnSite])
PayrollHours = SUM('Query1'[PayrollHoursWorked])
Divide = Hours / PayrollHours
The fields only show up if they are measures. Just add an additional Sum Measure for each of your two columns. Then just divide the two measures:
Hours = SUM('Query1'[HoursOnSite])
PayrollHours = SUM('Query1'[PayrollHoursWorked])
Divide = Hours / PayrollHours
Ah silly me. WOrks like a charm, thanks.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.