Sub SuprimerLigneVente()
If ActiveCell.Row <= 28 Then
MsgBox " Impossible de supprimer cette ligne.", , " SUPPRESSION DE LIGNE"
Else
If MsgBox("Voulez-vous supprimer la ligne selectionée ?", vbYesNo, " SUPPRESSION DE LIGNE") = vbYes Then
Set lot = ActiveCell.ListObject
If lot Is Nothing Then Exit Sub
l = ActiveCell.Row - lot.HeaderRowRange.Row
lot.ListRows(l).delete
End If
End If
End Sub