Jim,
Something like this?
Sub tgr()
Static ws1 As Worksheet: Set ws1 = Sheets("Sheet1")
Static ws2 As Worksheet: Set ws2 = Sheets("Sheet2")
Static ur As Range: Set ur = ws1.UsedRange
Static rngB As Range: Set rngB = Intersect(ur.Offset(1).Resize(ur.Rows.Count - 1), ws1.[B:B])
If rngB Is Nothing Then Exit Sub
Dim BCell As Range, BFound As Range
For Each BCell In rngB
Set BFound = Nothing
Set BFound = ws2.[B:B].Find(Trim(BCell.Value))
If Not BFound Is Nothing Then
ws2.Cells(BFound.Row, "A").Resize(1, 4).Value = ws1.Cells(BCell.Row, "A").Resize(1, 4).Value
Else
ws2.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Resize(1, 4).Value = ws1.Cells(BCell.Row, "A").Resize(1, 4).Value
End If
Next BCell
End Sub
Hope that helps,
~tigeravatar
Bookmarks