Forum Discussion
giuliapiazza94
4 years agoHelper IV
Exclude all filters except one
Hi guys, I want to do a measure that is filtered by only one filter, so I want to exsclude all the others. I have tried using ALL() but there are many, many, many tables so I'm looking for a functi...
- 4 years ago
bcdobbs
4 years agoCommunity Champion
Best way is to remove all filters and then add back the specifc column you need.
Like:
Example =
CALCULATE(
[Your Measure]
REMOVEFILTERS(),
VALUES('Product'[Brand])
)
jxavier111
2 years agoFrequent Visitor
best solution ever!!!
Thankyou.