Option Explicit
Sub Essai()
Dim Nomprojet$, dlg&, lig&
With Worksheets("Données")
dlg = .Cells(Rows.Count, 1).End(3).Row: If dlg = 1 Then Exit Sub
Nomprojet = "Nom du projet" 'à adapter ; si c'est une cellule de
'la feuille "Données", ne pas oublier de mettre un point devant.
'exemple : Nomprojet = .[A1]
Application.ScreenUpdating = 0
For lig = dlg To 2 Step -1
If .Cells(lig, 3) = Nomprojet Then .Rows(lig).Delete
Next lig
End With
End Sub