Bonjour, je demande un coup de main

Voilà je voudrais permmettre a ma macro de pouvoir faire un retour en arrière comme le ctrl Z d'excel

voici ma macro
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
Sub SupprimerArticle()
' SupprimerArticle
 
Application.ScreenUpdating = False
    ActiveCell.Rows("1:3").EntireRow.Select
    Selection.Delete Shift:=xlUp
Application.ScreenUpdating = True 'Facultatif
 
End Sub