Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Sebastian0406
New Member

Filter

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.

Sebastian0406_0-1699284631794.png

 

Sebastian0406_1-1699284667227.png

Thanks in advance.

 

best regards

Sebastian

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Sebastian0406 , 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

View solution in original post

v-yangliu-msft
Community Support
Community Support

Hi  @Sebastian0406 ,

 

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.

vyangliumsft_0-1699430694034.png

3. Result:

vyangliumsft_1-1699430694038.png

 

 

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

View solution in original post

4 REPLIES 4
v-yangliu-msft
Community Support
Community Support

Hi  @Sebastian0406 ,

 

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.

vyangliumsft_0-1699430694034.png

3. Result:

vyangliumsft_1-1699430694038.png

 

 

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, @v-yangliu-msft!

 

Thank you so much!

 

Best Regards,

Sebastian

amitchandak
Super User
Super User

@Sebastian0406 , 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

Thank you @amitchandak !

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.