Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
The problem can best be described with an example below:
Table1:
Date | group | Value
1/1/2000 | A | 10
1/1/2000 | B | 5
1/2/2000 | A | 11
1/2/2000 | B | 7
I would like to calculate the sum of the squared difference for each date between groups A and B. For the example above, it would be (10-5)^2 + (11-7)^2.
Any help greatly appreciated. Thanks.
Solved! Go to Solution.
Put below Measure in Card and you will get your answer...
Your Need=
SUMX(
SUMMARIZE(
'Table',
'Table'[Date],
"need",
POWER(
(CALCULATE(MAX('Table'[Value]),'Table'[Group] = "A") - CALCULATE(MAX('Table'[Value]),'Table'[Group] = "B")), 2)),
MAX([need]))
Thanks. I didn't think about using the SUMMARIZE function like that.
Put below Measure in Card and you will get your answer...
Your Need=
SUMX(
SUMMARIZE(
'Table',
'Table'[Date],
"need",
POWER(
(CALCULATE(MAX('Table'[Value]),'Table'[Group] = "A") - CALCULATE(MAX('Table'[Value]),'Table'[Group] = "B")), 2)),
MAX([need]))
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |