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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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]))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |