Sub EnregistreSansBoutons()
Dim NomFic As String
Dim oleObj As OLEObject
NomFic = Range('A24').Value
Sheets('Facture').Copy
For Each oleObj In ActiveSheet.OLEObjects
If oleObj.progID = 'Forms.CommandButton.1' Then oleObj.Delete
Next oleObj
ActiveWorkbook.SaveAs Filename:=NomFic
End Sub