Forum Discussion
Anonymous
3 years agoNot applicable
Create a new total column per specific row
Hello, I need some help for summarize row in a new column with a condition on rows The logic is : Sum for each product the value of BRAND A & BRAND B and put in every row What i have : ...
- 3 years ago
Anonymous Then try this Measure, also attached an example file
Measure = CALCULATE( SUM('Table'[Value]), 'Table'[BRAND] in {"A","B"} , ALLEXCEPT('Table','Table'[Product]))
DimaMD
3 years agoSolution Sage
Anonymous Then try this Measure, also attached an example file
Measure =
CALCULATE( SUM('Table'[Value]), 'Table'[BRAND] in {"A","B"} , ALLEXCEPT('Table','Table'[Product]))
Anonymous
3 years agoNot applicable
It's perfect ! thanks for this solution