now i modified to this but i got an error : " object required "
Dim dstrng As Range
Dim firstaddx As String
Dim n As Long
Dim c As Long
Dim found As Range
Dim found1 As Range
Sub findnext()
Set dstrng = Range("AD20")
n = 0
c = 0
Do
Set found = Cells.Find(What:="ASK Training Managers", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
Set found1 = Cells.findnext(After:=ActiveCell).Activate
ActiveCell.Offset(-5, 2).Select
found.Offset(-5, 2).Copy Destination:=dstrng.Offset(c, 0)
found1.Select
c = c + 1
n = n + 1
Loop While n = 10
End Sub
Bookmarks