This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
hello,
i've maked a table with several measures. Specifically the measure "afabricar" don't want that show negatives values (if the result it's negative the valued must be zero).
Well, if the measure show negatives values, the "Total" it's Ok, but if I make that the result show zero, the "Total" it's the same, don't changed.
Case A
afabricar =
IF(SUM(Productos[smincorregido])=0;[sminnew];SUM(Productos[smincorregido]))
-[stockactual]
+IF([totalconsumos]<[sminnew];[sminnew];[totalconsumos])
-'ops+stocks+cargas'[opspdts]
Case B:
afabricar = if(
(IF(SUM(Productos[smincorregido])=0;[sminnew];SUM(Productos[smincorregido]))
-[stockactual]
+IF([totalconsumos]<[sminnew];[sminnew];[totalconsumos])
-'ops+stocks+cargas'[opspdts])<0;
0;
IF(SUM(Productos[smincorregido])=0;[sminnew];SUM(Productos[smincorregido]))
-[stockactual]
+IF([totalconsumos]<[sminnew];[sminnew];[totalconsumos])
-'ops+stocks+cargas'[opspdts]
)
What's the problem????? ![]()
thank you.
Solved! Go to Solution.
Hi @BLM,
Try this formula, please. If it still doesn't work, please share your file or a dummy sample.
afabricar =
VAR temp =
IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
RETURN
IF (
HASONEVALUE ( 'TableName'[codnombre] );
IF ( temp < 0; 0; temp );
SUMX (
SUMMARIZE (
'TableName';
'TableName'[codnombre];
"temp1"; IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
);
[temp1]
)
)Best Regards,
Dale
I understand your measure [afabricar] returns negative values as '0', and positive values stay the same, right?
Try using:
Correct totals for afabricar = SUMX(SUMMARIZE('tableforcodnombre', 'tableforcodnombre'[codnombre]), [afabricar])
(where 'tableforcodnombre' is obviously the lookup table where your 'codnombre' column is; if you don't have a lookup table for codnombre, you'll have to wrap it in VALUES)
Proud to be a Super User!
Paul on Linkedin.
Hi @BLM,
The cause is the "Total" has its own context, which doesn't add up the values of the other rows. You try out this formula. If you want a accurate formula, please share your file or a dummy sample.
afabricar =
VAR temp =
IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
RETURN
IF (
HASONEVALUE ( 'TableName'[codnombre] );
temp;
SUMX (
SUMMARIZE (
'TableName';
'TableName'[codnombre];
"temp1"; IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
);
[temp1]
)
)Best Regards,
Dale
I'm tryed out your formula, and the result it's the same. Show the negatives values and the "Total" it's Ok, but the question is that don't show the negatives values but 0.
Hi @BLM,
Could you please mark the proper answer as solution?
Best Regards!
Dale
Hi @BLM,
Try this formula, please. If it still doesn't work, please share your file or a dummy sample.
afabricar =
VAR temp =
IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
RETURN
IF (
HASONEVALUE ( 'TableName'[codnombre] );
IF ( temp < 0; 0; temp );
SUMX (
SUMMARIZE (
'TableName';
'TableName'[codnombre];
"temp1"; IF (
SUM ( Productos[smincorregido] ) = 0;
[sminnew];
SUM ( Productos[smincorregido] )
)
- [stockactual]
+ IF ( [totalconsumos] < [sminnew]; [sminnew]; [totalconsumos] )
- 'ops+stocks+cargas'[opspdts]
);
[temp1]
)
)Best Regards,
Dale
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 56 | |
| 48 | |
| 37 | |
| 21 | |
| 20 |