Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all,
I have somehow a tricky problem.
I want to create a measure which sums the negative values per Company and Account:
| Company | Account | Value |
| A | K100 | 10 |
| A | K100 | -10 |
| A | K200 | 20 |
| B | K100 | 20 |
| B | K100 | -30 |
| B | K200 | -40 |
| C | K100 | 10 |
| C | K200 | 20 |
| C | K200 | -30 |
So for the table above I would like to get the result of -60:
> -10 for Company B and Account K100
> -40 for Company B and Account K200
> -10 for Company C and Account K200
I am only able to sum all negative values with the result of -110....
Any chance that I can group within the measure by Company and Account?
Any help would be much appreciated.
Many thanks
Philip
Solved! Go to Solution.
Hi, please try with this measure:
SumNegatives =
SUMX (
SUMMARIZE (
Table1,
Table1[Company],
Table1[Account],
"SumValues", CALCULATE ( SUM ( Table1[Value] ) )
),
IF ( [SumValues] < 0, [SumValues], 0 )
)Regards
Victor
Lima - Peru
Hi, please try with this measure:
SumNegatives =
SUMX (
SUMMARIZE (
Table1,
Table1[Company],
Table1[Account],
"SumValues", CALCULATE ( SUM ( Table1[Value] ) )
),
IF ( [SumValues] < 0, [SumValues], 0 )
)Regards
Victor
Lima - Peru
Victor,
many thanks! You saved my day, thats it!
Best
Philip
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 20 | |
| 14 | |
| 13 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 40 | |
| 39 | |
| 39 | |
| 38 |