Hyflex,
Here's the code with the LookAt:=xlWhole property
Sub tgr()
Dim rngName As Range: Set rngName = Columns("A").Find(What:="Name", LookAt:=xlWhole)
If rngName Is Nothing Then
MsgBox "No cells in column A that contain ""Name"""
Exit Sub
End If
Dim rngPrior As Range: Set rngPrior = rngName
While Not rngName Is Nothing
If rngName.Row < rngPrior.Row Then Exit Sub
rngName.Offset(-1, 0).Copy rngName.Offset(1, 6).Resize(rngName.CurrentRegion.Rows.Count - 2)
Set rngPrior = rngName
Set rngName = Columns("A").Find(What:="Name", After:=rngName, LookAt:=xlWhole)
Wend
End Sub
Bookmarks