Forum Discussion
Slicer selection
- 5 years ago
Hi, @
According to your description, you want to make a Slicer that can filter a list of text which contains the value of its’ selection, you can try my steps:
This is my test data:
- I created a measure:
Flag = var _value=SELECTEDVALUE(Slicer[Slicer]) return IF(CONTAINSSTRING(MAX('Table'[Text]),_value),1,0)- I created a Slicer and a table chart and apply a filter to the table chart like this:
And you can get what you want, like this:
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @
According to your description, you want to make a Slicer that can filter a list of text which contains the value of its’ selection, you can try my steps:
This is my test data:
- I created a measure:
Flag =
var _value=SELECTEDVALUE(Slicer[Slicer])
return
IF(CONTAINSSTRING(MAX('Table'[Text]),_value),1,0)
- I created a Slicer and a table chart and apply a filter to the table chart like this:
And you can get what you want, like this:
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.