Forum Discussion
Angelo
8 years agoRegular Visitor
Filtering Results
Hi Guys How do I create a measure that when selecting two or more variables from a filter it always selects a specific variable. For example if I have Scenario A, B and C and I filter A and B...
v-ljerr-msft
8 years agoMicrosoft Employee
Hi Angelo,
If I understand you correctly, you should be able to use ALL function in FILTER to create the measure. The formula below is for your reference. :smileyhappy:
Measure =
CALCULATE (
SUM ( Table1[Value] ),
FILTER ( ALL ( Table1 ), Table1[Scenario] = "A" )
)
Regards