K B
asked on
Excel Macro: Delete a Row if Column A and B match (in that Row)
Header A B
Row1 Joe Frank
Row2 Bob Bob
Row3 Bill Owen
Row4 Kelly Kelly
The macro would delete Rows #2 and #4
Thank you.
Row1 Joe Frank
Row2 Bob Bob
Row3 Bill Owen
Row4 Kelly Kelly
The macro would delete Rows #2 and #4
Thank you.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
If Cells(i, "A").Value = Cells(i, "B").Value Then