14.09.2023, 14:07
VBA für Smarties:
Code:
Sub Schaltflaeche_Klicken()
With ActiveSheet.Buttons(Application.Caller).TopLeftCell
If (.Column - 2) Mod 3 = 0 Then .Offset(, 1).Resize(, 2) = Array(Abs(.Offset(, 1) = 0), Format(.Offset(, 1) = 0, "yes/No"))
End With
End Sub