Forum Discussion
Anonymous
4 years agoNot applicable
How Get In measures
Cost = CALCULATE(SUM(A[Cost]),FILTER(A,A[Group]=B[Group])) This my calculated column DAX its giving expected result, I have tried many ways to create this in Measure But I am not able to achive t...
- 4 years ago
I think this will work
Cost = CALCULATE( SUM('A'[Cost]), TREATAS( VALUES('B'[Group]), 'A'[Group]) )
johnt75
4 years agoSuper User
I think this will work
Cost = CALCULATE( SUM('A'[Cost]), TREATAS( VALUES('B'[Group]), 'A'[Group]) )