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
jorgeran5
New Member

Hello, How can I filter multiple colums in M code?

Hello,

 

I want to filter in my query  the rows that in my Column "GENDER" are males Male, except the ones in Column "Name" are equal to John.

 

Can you please tell me how I can do this in query editor using M language?

 

Many thanks,

Jorgeran5

2 ACCEPTED SOLUTIONS
camargos88
Community Champion
Community Champion

@jorgeran5 ,

 

Something like:

 

Table.SelectRows(STEP_NAME, each NAME <> "John")

 

or you can use the UI to filter directly by the NAME column.

 

Ricardo



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

Proud to be a Super User!



View solution in original post

dax
Community Support
Community Support

Hi @jorgeran5 , 

You could try to refer to @camargos88 's suggestions to filter [GENDER] and [Name] directly. Or you also could create a column like below   if [GENDER] ="male" and [Name]<>"John" then "1" else null, then filter this column which value not equal null.

Best Regards,
Zoe Zhi

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

2 REPLIES 2
dax
Community Support
Community Support

Hi @jorgeran5 , 

You could try to refer to @camargos88 's suggestions to filter [GENDER] and [Name] directly. Or you also could create a column like below   if [GENDER] ="male" and [Name]<>"John" then "1" else null, then filter this column which value not equal null.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

camargos88
Community Champion
Community Champion

@jorgeran5 ,

 

Something like:

 

Table.SelectRows(STEP_NAME, each NAME <> "John")

 

or you can use the UI to filter directly by the NAME column.

 

Ricardo



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

Proud to be a Super User!



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.

Top Solution Authors
Top Kudoed Authors