Bonjour,
J'essai de faire une petite macro mais je elle plante sans que je ne sois capable de trouver l'erreur.
Public intDL As Integer
Public intDC As Integer
Public intFL As Integer
Public intFC As Integer
Sub tridonne()
'
' tridonne Macro
'
' Touche de raccourci du clavier: Ctrl+r
intDL = 1
intDC = 1
intFL = 1
intFC = 2
Do Until Cells(intFL, 2).Value = ""
intFL = intFL + 1
Loop
intFL = intFL - 1
Range(Cells(intDL + 1, intDC), Cells(intFL, intFC)).Select
Selection.Cut Destination:=Range(Cells(intDL, intDC + 1), Cells(intFL - 1, intFC + 1))
Range(Cells(intDL, intDC)).Select
Selection.AutoFill Destination:=Range(Cells(intDL, intDC), Cells(intFL - 1, intFC - 1))
'Range("A1:A11" ).Select
Rows(intFL).Select
Selection.Delete Shift:=xlUp
End Sub
Le débogueur me renvoi toujours à la première ligne où j'utilise la commande Range.
Merci d'avance (j'ai rien trouvé sur internet qui réponde concrètement à ma question)