Bonjour,
Pour barrer la cellule située à droite de la cellule active
Sub Macro1()
With ActiveCell
.Offset(, 1).Font.Strikethrough = IIf(.Offset(, 1).Font.Strikethrough = False, True, False)
End With
End Sub
Pour barrer celle de gauche
Sub Macro2()
With ActiveCell
If .Column = 1 Then Exit Sub
.Offset(, -1).Font.Strikethrough = IIf(.Offset(, -1).Font.Strikethrough = False, True, False)
End With
End Sub
Bonne Journée