Forum Discussion
marina_oliveira
3 years agoFrequent Visitor
Table visualization totals
Hello everyone! I have a column that is the sum (subtraction) of two other columns (Disponível = Estoque - Pedidos). Sometimes, this subtraction is a negative number. My client wants to show zero in...
- 3 years ago
Hi marina_oliveira
You need to iterate over the matrials:Disponível (Correct Total) = SUMX ( VALUES ( 'Table'[Material] ), [Disponível] )
tamerj1
Community Champion
3 years agoHi marina_oliveira
You need to iterate over the matrials:
Disponível (Correct Total) =
SUMX (
VALUES ( 'Table'[Material] ),
[Disponível]
)- marina_oliveira3 years agoFrequent Visitor
Thank you! it worked perfectly!