I want to insert a button
via VBA into my worksheet. Therefore, I tried to go with the simple VBA from here.
Sub Insert_Button()
Sheet1.Shapes("Button 1").Visible = True
End Sub
However, this VBA only works if the button has been inserted and hidden manually before.
I also tried the solution from here but it marked the code red and did not run.
How can I insert a form control button
via VBA if the button does no exist in the file yet?