I try this code now, and give me a error, in destination. I dont know what im doing wrong. i try several times, a quite diferent things now.
Sub Find_First()
Dim FindString As String
Dim Rng As Range
Dim RowCnt As Long
FindString = Sheets("sheet1").Range("F5").Value
If Trim(FindString) <> "" Then
With Sheets("sheet2").Range("A:A")
Set Rng = .Find(What:=FindString, _
After:=.Cells(.Cells.Count), _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False)
If Not Rng Is Nothing Then
RowCnt = Rng.Row
Worksheets("sheet1").Range("p13:af13").Copy Destination:=Worksheets("sheet2").Range(Cells(RowCnt, 1))
Application.Goto Rng, True
Else
MsgBox "Nothing found"
End If
End With
End If
End Sub