Mike!
It does indeed! Thanks again for your timely intervention.
Now the found rows match with the copied match on the track sheet. I hope this will satisfay the OP.
Sub find_copy()
Dim c2 As Range, c As Range
With Sheets("Track")
.Range("C2:E" & .Rows.Count - 1).Clear
For Each c2 In .Range("B2:B" & .Cells(Rows.Count, 1).End(xlUp).Row)
For Each ws In Worksheets
If ws.Name Like "Course*#" Then
Set c = ws.Columns(2).Find(c2, , xlValues, xlWhole)
If Not c Is Nothing Then
c.Offset(, 3) = "Found"
c2.Offset(, 3) = "Found"
c.Offset(, 1).Copy Sheets("Track").Range(c2.Address).Offset(, 1)
End If
End If
Next ws
Next c2
End With
End Sub
Bookmarks