Sub SuprimerLigneVente()
Dim myRange As Range
Set myRange = Application.Selection
For j = myRange.Rows(1).Row To myRange.Rows.Count + myRange.Rows(1).Row - 1
If j <= 28 Then
'MsgBox j
Set myRange = Range(Cells(j + 1, 1), Cells(myRange.Rows.Count + myRange.Rows(1).Row - 1, 1))
'MsgBox myRange.Address
End If
Next j
MsgBox " Impossible de supprimer cette ligne.", , " SUPPRESSION DE LIGNE"
If MsgBox("Voulez-vous supprimer la ligne selectionée ?", vbYesNo, " SUPPRESSION DE LIGNE") = vbYes Then
myRange.EntireRow.Delete
End If
End Sub