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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Most Valuable Professional
Most Valuable Professional

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
Most Valuable Professional
Most Valuable Professional

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!

Anonymous
Not applicable

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

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric 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.