Got it -- maybe:
Sub x()
Dim cell As Range
Dim rFind As Range
Dim iWks As Long
With Worksheets(1)
For Each cell In .Range("B4", .Range("B4").End(xlDown))
With cell
If Not IsEmpty(.Offset(, -1).Value) Then
For iWks = 2 To Worksheets.Count
Set rFind = Worksheets(iWks).Columns(2).Find(What:=.Value, _
LookIn:=xlValues, LookAt:=xlWhole, _
MatchCase:=False, matchbyte:=False)
If Not rFind Is Nothing Then rFind.Offset(, -1).Value = .Offset(, -1).Value
Next iWks
End If
End With
Next cell
End With
MsgBox "Done"
End Sub
Bookmarks