Sub coller_install()
ActiveSheet.Unprotect ""
If Selection.Rows.Count = 1 And Selection.Columns.Count = 16384 Then 'Vérifie que la selection soit une ligne'
Selection.Insert Shift:=xlDown 'partie qui ne fonctionne pas'
Application.CutCopyMode = False
Else
MsgBox "Selectionner la ligne en dessous de laquelle vous souhaitez coller"
End If
With ActiveSheet
.EnableAutoFilter = True
.EnableOutlining = True
.Protect Contents:=True, UserInterfaceOnly:=True, AllowFormattingCells:=True, AllowInsertingRows:=True, AllowDeletingRows:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True
End With 'réactive la protection'
End Sub