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
Hello all!
I wanted to ask whether it is possible to set the filter in the dropdown so that not only "Zimmerei" but also "Zimmerei;...." is displayed, as shown in the first screenshot. Unfortunately, only "Zimmerei" is displayed, which is actually correct, but I would still like to have an extended filter option.
The first screenshot shows all data.
Thanks in advance.
best regards
Sebastian
Solved! Go to Solution.
@Anonymous , In case you want a like filter then explore Text filter
Text Filter Slicer and how to search on Multiple columns: https://youtu.be/RbeZRJ3uAZE
If you want to additional value, the slicer needs to be on an independent/disconnected table and then you need to add cluse for additional value
example
Countrows(filter(Table1, Table1[Column1] IN VALUES('list'[Values]) || Table1[Column1] = "Zimmerei"))
Need of an Independent/disconnected Table in Power BI - Exclude: https://youtu.be/lOEW-YUrAbE
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Slicer_Table'[Slicer])
return
IF(
CONTAINSSTRING(
MAX('Table'[Gewerk]),_select)=TRUE(),1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Slicer_Table'[Slicer])
return
IF(
CONTAINSSTRING(
MAX('Table'[Gewerk]),_select)=TRUE(),1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi, @Anonymous!
Thank you so much!
Best Regards,
Sebastian
@Anonymous , In case you want a like filter then explore Text filter
Text Filter Slicer and how to search on Multiple columns: https://youtu.be/RbeZRJ3uAZE
If you want to additional value, the slicer needs to be on an independent/disconnected table and then you need to add cluse for additional value
example
Countrows(filter(Table1, Table1[Column1] IN VALUES('list'[Values]) || Table1[Column1] = "Zimmerei"))
Need of an Independent/disconnected Table in Power BI - Exclude: https://youtu.be/lOEW-YUrAbE
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 |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |