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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cgkas
Helper V
Helper V

How to shorten multiple OR conditions when filtering column in Power Query

Hello to all,

 

I Have to filter Column1 (Col1) for values A, B, C, D, E or F doing this:

= Table.SelectRows(#"Previous Step", each ([Col1] = "A" or [Col1] = "B" or [Col1] = "C" or [Col1] = "D" or [Col1] = "E" or [Col1] = "F"))

If I have several OR conditions is possible to do in a shortest way?, something similar to this?

= Table.SelectRows(#"Previous Step", each ([Col1] = {"A","B","C","D","E","F"}))

Thanks in advance

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @cgkas,

Try List.Contains. Something like:

 

Table.SelectRows(#"Previous Step", each (List.Contains({"A","B","C","D","E","F"},[Col1])))

 

View solution in original post

4 REPLIES 4
AlB
Super User
Super User

Hi @cgkas,

Try List.Contains. Something like:

 

Table.SelectRows(#"Previous Step", each (List.Contains({"A","B","C","D","E","F"},[Col1])))

 

Many thanks AIB,

 

It seems to work. 

 

I know is another question, only to know if it is possible to use wildcards (regex) to shorten even more. Something like this:

 

Table.SelectRows(#"Previous Step", each (List.Contains({"AB*","BC*"},[Col1])))

 

 

@cgkas 

In this case you could use

List.Contains({"A".."F"},[Col1])

which will include all letters between A and F.

As for the wildcards, maybe this posting will be useful

Excellent. Thank you AIB for your kind help.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.