Give this a try
Sub abc()
Dim FoundCell As Range
Dim LastCell As Range
Dim FirstAddr As String
Dim ws As Worksheet
Dim a() As Variant
Dim i As Long
ReDim a(1 To 10, 1 To 3)
a = Range("A4:C13")
For i = 1 To UBound(a)
a(i, 3) = 0
a(i, 2) = "Not Found"
Next
For i = 1 To UBound(a)
For Each ws In Worksheets
If ws.Name <> "Sheet1" Then
With ws.Range("A:A")
Set LastCell = .Cells(.Cells.Count)
End With
Set FoundCell = ws.Range("A:A").Find(What:=a(i, 1), After:=LastCell)
If Not FoundCell Is Nothing Then
FirstAddr = FoundCell.Address
End If
Do Until FoundCell Is Nothing
a(i, 3) = a(i, 3) + 1
a(i, 2) = "Found"
FoundCell.Offset(0, 1).Value = Range("D2").Value 'D1<=|'
FoundCell.Offset(0, 2).Value = Range("E2").Value 'E1<=|'
Set FoundCell = ws.Range("A:A").FindNext(After:=FoundCell)
If FoundCell.Address = FirstAddr Then
Exit Do
End If
Loop
End If
Next
Next
Range("A4").Resize(10, 3) = a
Erase a
Set ws = Nothing
Set FoundCell = Nothing
Set LastCell = Nothing
End Sub
---------- Post added at 06:12 AM ---------- Previous post was at 06:11 AM ----------
Give this a try
Sub abc()
Dim FoundCell As Range
Dim LastCell As Range
Dim FirstAddr As String
Dim ws As Worksheet
Dim a() As Variant
Dim i As Long
ReDim a(1 To 10, 1 To 3)
a = Range("A4:C13")
For i = 1 To UBound(a)
a(i, 3) = 0
a(i, 2) = "Not Found"
Next
For i = 1 To UBound(a)
For Each ws In Worksheets
If ws.Name <> "Sheet1" Then
With ws.Range("A:A")
Set LastCell = .Cells(.Cells.Count)
End With
Set FoundCell = ws.Range("A:A").Find(What:=a(i, 1), After:=LastCell)
If Not FoundCell Is Nothing Then
FirstAddr = FoundCell.Address
End If
Do Until FoundCell Is Nothing
a(i, 3) = a(i, 3) + 1
a(i, 2) = "Found"
FoundCell.Offset(0, 1).Value = Range("D2").Value 'D1<=|'
FoundCell.Offset(0, 2).Value = Range("E2").Value 'E1<=|'
Set FoundCell = ws.Range("A:A").FindNext(After:=FoundCell)
If FoundCell.Address = FirstAddr Then
Exit Do
End If
Loop
End If
Next
Next
Range("A4").Resize(10, 3) = a
Erase a
Set ws = Nothing
Set FoundCell = Nothing
Set LastCell = Nothing
End Sub
Bookmarks