Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |