Forum Discussion
Anonymous
7 years agoNot applicable
Compare one to many in aggregate dynamically using Slicer
Hi there folks, I have 4 companies I would like to do comparison (A,B,C,D). I want to have a dropdown slicer that when I select A, it would do comparison A vs (B+C+D in aggregate). And when I s...
- 7 years ago
Anonymous,
Just drag the following two measures.
Measure = SUM ( Table1[Value] )
Measure 2 = CALCULATE ( SUM ( Table1[Value] ), NOT ( Table1[Company] IN VALUES ( Table1[Company] ) ) )
v-chuncz-msft
Community Support
7 years agoAnonymous,
Just drag the following two measures.
Measure = SUM ( Table1[Value] )
Measure 2 =
CALCULATE (
SUM ( Table1[Value] ),
NOT ( Table1[Company] IN VALUES ( Table1[Company] ) )
)