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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Labraham36
Helper I
Helper I

Filters with various conditions

Hello Community! I ask you a query: I need to generate a filter, which should actually be an "Advanced Filter", which basically has to do is that when a word has certain characters, I filter the word. In SQL it would be something like "ANA%" (Everything that has the word ANA and has more characters), "LOG", "% ADA%", etc. Now, Power BI has the advanced filter function, but this does not allow to put more than two conditions. Something like "Contains X" And / or "Contains Y". I need to add more than two conditions to my filter. How can this be done? Thanks!

1 ACCEPTED SOLUTION
edugoncalves
Resolver I
Resolver I

Hi @Labraham36 ,

I would go with a measure, e.g.:

Filter Measure = IF(LEFT(SELECTEDVALUE(Column[Table]), 2) = "A1" && ..., 1)

Then, on the filter panel, filter "Filter Measure" to 1 and the visual will "inherit" the selected filters in the measure.

You can also refer to this link.


Best Regards,

Eduardo

View solution in original post

3 REPLIES 3
edugoncalves
Resolver I
Resolver I

Hi @Labraham36 ,

I would go with a measure, e.g.:

Filter Measure = IF(LEFT(SELECTEDVALUE(Column[Table]), 2) = "A1" && ..., 1)

Then, on the filter panel, filter "Filter Measure" to 1 and the visual will "inherit" the selected filters in the measure.

You can also refer to this link.


Best Regards,

Eduardo

Thanks a lot! It worked for me Perfect!

rodrigosan
Resolver III
Resolver III

Hello how are you?
Have you considered the possibility of using the Smart Filter by OKVIZ visual?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors