Hello
Trying to figure out how to add a togglebutton via code. I've been adding buttons a few different ways, but the most efficient (to me) seemed this code that I've been using:
Sub Buttoner()
Dim a As Button
Dim w As WorkSheet
Set a = w.Buttons.Add(840, 170, 108, 30)
a.OnAction = "MyMacro"...