Sub BoutonInserer1LigneVide()
ActiveSheet.Unprotect Password:="."
Application.EnableEvents = False
With ActiveCell
.Offset(1, 0).EntireRow.Resize(1).Insert Shift:=xlDown
Cells(6, 1).Copy: .Offset(1, 0).PasteSpecial Paste:=xlPasteFormats
.Offset(1, 0).RowHeight = Cells(6, 1).RowHeight
End With
Application.EnableEvents = True
ActiveSheet.Protect Password:="."
End Sub