Sub supp_ligne_zero_formule()
ActiveSheet.Unprotect "motdepasse"
Application.ScreenUpdating = False
Columns("B:B").Insert Shift:=xlToRight
Range("B16:B" & [C65536].End(xlUp).Row).Value = Range("C16:C" & [C65536].End(xlUp).Row).Value
With Range("B16:B" & [B65536].End(xlUp).Row)
.Replace What:="0", Replacement:="", LookAt:=xlWhole
.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End With
Columns("B:B").Delete Shift:=xlToLeft
Application.ScreenUpdating = True
ActiveSheet.Protect "motdepasse", True, True, True
End Sub