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!Learn 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 |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 94 | |
| 77 | |
| 41 | |
| 26 | |
| 25 |