Forum Discussion
bvramilo
2 years agoFrequent Visitor
Avoid sum multiple times same value on column
Hi everyone, I have being problems calculating a total on a Matrix: I have this structure: Batch IdBatch Amount Connection 1-N with Component table Component I...
Sahir_Maharaj
2 years agoSuper User
Hello bvramilo,
Can you please try the following:
Total Batch Amount =
SUMX(
VALUES(Batch[IdBatch]),
CALCULATE(
MAX(Batch[Amount])
)
)