A priori j'ai réussi à compléter le code et ça marche ! Merci :)
Sub trouver()
Dim i As Integer, quel As Integer
Dim trouve, cherche As Range
Dim PremièreApparition As Single
Sheets("Synthèse").Activate
Set cherche = Sheets("Synthèse").Range("B2:B150")
Set trouve = cherche.Cells.Find(what:="APP", LookIn:=xlValues, searchdirection:=xlNext)
PremièreApparition = trouve.Row
For i = 2 To 150
If Range("B" & i) Like "APP" Then quel = i
Next i
Range("C" & PremièreApparition & ":D" & quel).Select
End Sub