Sub Insert()
Chantier = "Quel est le chantier ?"
Réponse = InputBox(Chantier, vbQuestion, "Nom du chantier")
If Réponse = vbCancel Then
MsgBox "Aucune donnée ne va être importée dans le planning", vbInformation
Close Réponse
Else
DL = 1 + Range("G65500").End(xlUp).Row ' Première cellule de G disponible
Cells(DL, "G") = Réponse
End If
End Sub