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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
arimoldi
Resolver II
Resolver II

Power Query Table.SelectRows with multiple/nested criteria

Hi,

 

I want to keep rows in my dataset that match the following conditions:

 

field_num <> 1 

(field_num <> 0 and field_alfa <> "A")

field_num <> 3

 

How can I translate this code in one Power Query step using Table.SelectRows?

 

Thanks,

Andrea

 

1 ACCEPTED SOLUTION

Let's restructure your condition:

 

- You want to keep rows where `field_num <> 1`.

- You want to exclude rows where `field_num = 0` and `field_alfa = "A"` at the same time. This is equivalent to saying you want to keep rows where NOT (`field_num = 0` and `field_alfa = "A"`), which can be rewritten as `(field_num <> 0 or field_alfa <> "A")`.

- You want to keep rows where `field_num <> 3`.

 

So, combining these conditions, you get:

 

Table.SelectRows(yourTableName, each [field_num] <> 1 and ([field_num] <> 0 or [field_alfa] <> "A") and [field_num] <> 3)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
amustafa
Solution Sage
Solution Sage

Table.SelectRows(yourTableName, each [field_num] <> 1 and ([field_num] <> 0 and [field_alfa] <> "A") and [field_num] <> 3)





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks for the reply.

 

I tried in this way, but it seems it is not working because it is filtering all the rows where [field_num] <> 0 instead of the one where [field_num] <> 0 and [field_alfa] <> "A", so where both the conditions are respected.

 

Any suggestion?

 

Let's restructure your condition:

 

- You want to keep rows where `field_num <> 1`.

- You want to exclude rows where `field_num = 0` and `field_alfa = "A"` at the same time. This is equivalent to saying you want to keep rows where NOT (`field_num = 0` and `field_alfa = "A"`), which can be rewritten as `(field_num <> 0 or field_alfa <> "A")`.

- You want to keep rows where `field_num <> 3`.

 

So, combining these conditions, you get:

 

Table.SelectRows(yourTableName, each [field_num] <> 1 and ([field_num] <> 0 or [field_alfa] <> "A") and [field_num] <> 3)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.