Private Sub CommandButton1_Click()
'dans la feuille Cost Breakdown, colonne C
With Sheets("Cost breakdown").Columns(3)
'on recherche la valeur selectionnée en F5
Set c = .Find([F5])
'si la valeur non vide - donc est trouvée
If Not c Is Nothing Then
'on copie la ligne entière, et on la colle en ligne 14 de la feuille welcome
c.EntireRow.Copy Destination:=Sheets("Welcome").Range("A14")
End If
End With
End Sub