VBA/Formula for comparing three or four tables

Vishaal

Well-known Member
Joined
Mar 16, 2019
Messages
533
Office Version
  1. 2010
  2. 2007
Platform
  1. Windows
  2. Web
Hi,

Thanks in advance,

i have three columns and want to compare them, conditions are

1- If Coloumn 1 & Coloumn 2 are equal - Delete entire row
2- If Coloumn 2 & Coloumn 3 are equal - Delete entire row
3- If Coloumn 1 & Coloumn 3 are equal - Delete entire row


please provide any VBA or code or formula
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try this:
Code:
Sub Delete_If()
'Modified 8/26/2019 3:47:12 AM  EDT
Application.ScreenUpdating = False
Dim i As Long
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "A").End(xlUp).Row
For i = Lastrow To 1 Step -1
    If Cells(i, 1).Value = Cells(i, 2).Value Then Rows(i).Delete
Next
Application.ScreenUpdating = True
End Sub
 
Upvote 0
It's unclear in the suggested code #2 where blue conditions are tested:
1- If Coloumn 1 & Coloumn 2 are equal - Delete entire row
2- If Coloumn 2 & Coloumn 3 are equal - Delete entire row
3- If Coloumn 1 & Coloumn 3 are equal - Delete entire row
The loop seems to only compare columns 1 and 2
Rich (BB code):
For i = lastRow To 1 Step -1
    If Cells(i, 1).Value = Cells(i, 2).Value Then Rows(i).Delete
Next
vs
i have three columns and want to compare them, conditions are

If you need to compare column 1 vs column 3 or column 2 vs column 3 as well as column 1 vs column 2 then try:
Rich (BB code):
Sub M1()

    Dim v   As Variant
    Dim x   As Long
    
    x = Cells(Rows.Count, 1).End(xlUp).Row
    v = Cells(1, 1).Resize(x, 3).Value

    For x = LBound(v, 1) To UBound(v, 1)
        If v(x, 1) = v(x, 2) Or v(x, 1) = v(x, 3) Or v(x, 2) = v(x, 3) Then v(x, 1) = ""
    Next x
    
    With Cells(1, 1).Resize(UBound(v, 1))
        .Resize(, UBound(v, 2)).Value = v
        .SpecialCells(xlCellTypeBlanks).EntireRow.Delete
    End With
    
    Erase v
    
End Sub
 
Last edited:
Upvote 0
It's unclear in the suggested code #2 where blue conditions are tested:

The loop seems to only compare columns 1 and 2
I agree, but perhaps the OP adapted to add the other conditions.

I disagree with your suggested alternative though as it would delete row 4 from the following sample data even though that row does not meet the delete conditions. Of course you could perhaps set v(x, 1) to an error value & then delete the error rows (assuming no errors already in column A).

Excel Workbook
ABC
1Hdr1Hdr2Hdr3
2xcq
3fgf
4jg
5yyy
6h
Compare columns



If the data is not too large, here is a non-looping approach. I have assumed ..
- a header row
- no data beyond column C

Code:
Sub Del_Matches()
  Application.ScreenUpdating = False
  With Range("A1:C" & Columns("A:C").Find(What:="*", LookIn:=xlValues, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row)
    Range("D2").Formula = "=OR(A2=B2,B2=C2,A2=C2)"
    .AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range("D1:D2"), Unique:=False
    .Offset(1).EntireRow.Delete
    Range("D2").ClearContents
  End With
  If ActiveSheet.FilterMode Then ActiveSheet.ShowAllData
  Application.ScreenUpdating = True
End Sub

@Vishaal
If the data is very large, post back for another faster approach & tell us about how many rows of data you might actually have.
 
Upvote 0
Thanks Peter_SSs Sir Ji

I have only Four Coloumn in some and only eight coloumn in some

and raw for all will be row 2 to row 10000
 
Upvote 0
I have ... eight coloumn in some

and raw for all will be row 2 to row 10000
So, have you tried any of the suggestions with 8 columns and 10,000 rows?

- If not, I suggest that you do and report back on the time taken

-If so, was the code fast enough (about how long?) and exactly what code did you use since none of the suggestions were based on 8 columns.

For the future I also suggest that you try to be more accurate with your initial information. In this thread you stated specifically "i have three columns"
 
Upvote 0
Hey @Peter_SSs
I agree, but perhaps the OP adapted to add the other conditions.

How many times on this forum have we seen replies complaining OP hasn't given enough precise information AND after a suggestion has been posted (and thanked by the OP) others have contributed with their alternatives or different assumptions/interpretations of the ask?

By extention your reply is inferring the first suggestion should be sufficient alone and so not provide alternatives.

A reverse loop vs an array loop are both different yet used for same outcome, so even if the OP had adapted, it would be a different way to consider a solution and as you did with your code, suggest an alternative solution that is hopefully faster than the initial posted suggestion?

OP could have run code where only the first condition satisfies but if data size is large, not OP didn't scroll down far enough, there may be other rows that should be deleted but were not, because it's only comparing columns 1 & 2 and the User experienced a unknown known?

I disagree with your suggested alternative
Great spot, I hadn't tested for that scenario - I (wrongly!) assumped column A to not be blank :)

Finally, their follow up with the unclear,
I have ... eight column in some
suggests they hadn't adapted the suggestion or considered in relation to the initial code suggestions, so better to not assume they adapated the code, especially given the initial post does state for 3 columns AND the first suggestion only compared columns A&B exclusively? ;)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top