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
As the title says I am having an issue with my measure totals. I am coming my raw data to whats in power bi and the vpower bi totals a off by a few units. When I drill down into the data and add up the sub totals I am getting a different total from the grand total.
How can I fix this issue? Please see the measure formulas below.
Solved! Go to Solution.
Hello @Anonymous,
Can you please try this approach:
Total RVUs per unit =
SUMX(
'Raw Data',
'Raw Data'[Units] * [Non-Facility Total x]
)
Alternatively, you can force it to calculate correctly at both row and total levels
Total RVUs per unit =
SUMX(
SUMMARIZE(
'Raw Data',
'Raw Data'[YourUniqueRowIdentifier],
"RowRVUs", 'Raw Data'[Units] * [Non-Facility Total x]
),
[RowRVUs]
)
Hope this helps.
Hello @Anonymous,
Can you please try this approach:
Total RVUs per unit =
SUMX(
'Raw Data',
'Raw Data'[Units] * [Non-Facility Total x]
)
Alternatively, you can force it to calculate correctly at both row and total levels
Total RVUs per unit =
SUMX(
SUMMARIZE(
'Raw Data',
'Raw Data'[YourUniqueRowIdentifier],
"RowRVUs", 'Raw Data'[Units] * [Non-Facility Total x]
),
[RowRVUs]
)
Hope this helps.
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.