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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
CliffordAP
Helper II
Helper II

PowerQuery - Remove rows that have matching values between 2 columns

Hey guys,

I have a small ask about removing rows. I simply want to remove the rows that match.
I tried M queries like:

= Table.RemoveMatchingRows(#"CostomStep",[Column1=Column2])

But I'm not sure I'm filling in the arguments correctly, and the documentation is pretty bad for beginners to figure out.

 

Column1Column2
AB
CD
EE
FG
HH

 

Just need to remove the rows that have matching values between these columns.

Thank you!

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Simply do the reverse i.e. SelectRows rather than Removing Rows which is easier to write

= Table.SelectRows(#"CostomStep", each [Column1]<>[Column2])

 

View solution in original post

3 REPLIES 3
Vijay_A_Verma
Super User
Super User

Simply do the reverse i.e. SelectRows rather than Removing Rows which is easier to write

= Table.SelectRows(#"CostomStep", each [Column1]<>[Column2])

 

That's what I'm talkin about! Thank you!

watkinnc
Super User
Super User

I would make a custom column with

 

each if[Column1] = [Column2] then "True" else "False")

 

Then filter out the "True" values in the custom column.

 

--Nate


I’m usually answering from my phone, which means the results are visualized only in my mind. You’ll need to use my answer to know that it works—but it will work!!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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