Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C14:C" & Cells(65536, 5).End(xlUp).Row)) Is Nothing Then
If Target.Value = "Autres Transports" Then
Target.Offset(, 6) = InputBox("Qu'elle est votre commentaire", "COMMENTAIRES OBLIGATOIRE", "")
End If
End If
End Sub