?
2011-07-07 12:32:41 UTC
So...i have two worksheets "2" and "3" , i've got data in in both sheets in the same column which is B, I want for both of them to compare each other and eliminate the row in which the data is repeated in the second worksheet, i tried this:
Sub sas()
For Each c In Sheet3.Range("b7:b1000")
If c.Value = Sheet2.Range("b7:1000") Then
c.Value = Selection.EntireRow.Delete
End If
Next c
End Sub
its wrong so i dont know what else to use its pretty easy but as i told u my class wasnt very advanced
THANK YOU in advanced