Change CommandButton Caption
Hi Lisa
This one worked! Thanks
-----Original Message-----
"Claude" wrote in
message ...
Hi
Does anyone know how to change the text on a command
button? The following does not work:
ActiveSheet.Shapes("CommandButton1").Caption = "test"
Try this:
ActiveSheet.CommandButton1.Caption = "test"
.
|