If your button is to fire a macro you can use any Shape
and format every which way. Right click and "Assign macro".
On the Drawing toolbar look at Autoshapes / Basic Shapes
and one that looks like a double rectangle, this can look
like a button (maybe format the line to "No Line").
Regards,
Peter
-----Original Message-----
I was using the Forms Buttons. I tried using the Control
If you drop the button from the controlbox on worksheet, you can double click on
the button and you'll be taken into the VBE to see what runs when you click on
that button.
Just call your macro (in a general module???) from there.
Option Explicit
Private Sub CommandButton1_Click()
Call myOldMacro
End Sub
(There's a button on that controltoolbox toolbar that you may need to toggle
on/off when you're making changes--you'll see a "design mode" tooltip when you
let the cursor linger over it.)
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.