March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to 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)
Proud to be a Super User!
Table.SelectRows(yourTableName, each [field_num] <> 1 and ([field_num] <> 0 and [field_alfa] <> "A") and [field_num] <> 3)
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)
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |