Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I have a requirement in slicer selection. if i select a option in slicer, it should give the result of all values related to that particular text (example, if i select 'day', it should return values of all text contains 'day' like 'today', 'yesterday', 'next day' etc.
please help with any workaround
Solved! Go to Solution.
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:
Flag =
var _value=SELECTEDVALUE(Slicer[Slicer])
return
IF(CONTAINSSTRING(MAX('Table'[Text]),_value),1,0)
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:
Flag =
var _value=SELECTEDVALUE(Slicer[Slicer])
return
IF(CONTAINSSTRING(MAX('Table'[Text]),_value),1,0)
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.
@Anonymous , Try a measure like
calculate(countrows(Table), filter(Table, search(selectedvalue(slicer[value]),Table[Column],,0) >0))
Plot this measure with a column in this example -Table[Column]
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
80 | |
53 | |
39 | |
39 |
User | Count |
---|---|
104 | |
85 | |
47 | |
44 | |
43 |