Forum Discussion
ikkew
Advocate I
7 years agoWrong column totals (table)
Hi, I've been trying to display a simple table with total values but I seem to have an issue. My totals seem to be incorrect. What could be the issue here? Very willing to provide more info if nesc...
- 7 years ago
Can you try this for MIN:
Min = SUMX(VALUES(Artikel[ArtikelId]), CALCULATE(SUM(ArtikelM[Aantal]) * MIN(ArtikelM[MinEenheid])))
HotChilli
Community Champion
7 years agoOk, i understand now. There is a bracket in the wrong place in your version of my measure. It should be
MinChilli = SUMX(ArtikelM, ArtikelM[Aantal] * ArtikelM[MinEenheid])
ikkew
Advocate I
7 years agoYou're right, my mistake and my apologies.
Your answer should've been the accepted answer since it was first.
Thank you for helping me out!