bonjour
sur excel j'ai un souci en VBA. le morceau de macro ci joint me renvoit une erreur d'execution 1004 au niveau du range
svp quelqu'un pour me guider ? merci
Dim col As Integer
Dim lig As Integer
Selection.EntireRow.Insert
col = ActiveCell.Column - 1
lig = ActiveCell.Row + 3
Range(Cells(ActiveCell.Row, col), Cells(lig, col)).Formula = "=DECALER($A$6;LIGNE()-10;0)+1"
-----