Forum Discussion
jmarcrum
6 years agoHelper II
Use Measure as Slicer
Hi everyone - I am trying to use the text values from a measure in a slicer on my table visual. I created a separate table called "Category" that holds the possible text values from the measure ...
- 6 years ago
Hi jmarcrum ,
We can change the measure as following to meet your requirement:
Category Selection = IF ( [Category Measure] IN DISTINCT ( Category[Value] ), 1, 0 )
Best regards,
Greg_Deckler
6 years agoCommunity Champion
So many times you can do something like:
VAR __Selections = 'Slicer'[Categories]
Then you can do a filter like:
FILTER('Table',[Column] IN __Selections)
Anonymous
5 years agoNot applicable
@Greg_Deckler could you give a more specific explanation? tnahk you!