Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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]
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 77 | |
| 41 | |
| 26 | |
| 26 |