Boa tarde!!
Considere como a terceira parte.
Option Explicit
Sub Parte_III()
Dim x, K1 As Range, K2, i As Long, r As Long
Set K1 = Sheet1.Range("a1").CurrentRegion.Columns(1)
K2 = Sheet2.Range("a1").CurrentRegion.Value2
r = K1.Rows.Count
For i = 2 To UBound(K2, 1)
x = Application.Match(K2(i, 1), K1.Value2, 0)
If IsError(x) Then
K1.Cells(1).Offset(r).Resize(, UBound(K2, 2)) = Application.Index(K2, i, 0)
r = r + 1
End If
Next
End Sub
Foi primeiramente para Substituir, depois para Deleltar e agora Inserir
Att
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 11/02/2013 10:13 am