T
TomorrowsMan
This seems it should be simple, but I'm spacing on it....
Hwo can I call the same macro from several Command Buttons without
having to copy the script to each Click() event?
So, I have a macro:
Sub ShowHello()
UserForm1.Show
End Sub
And let's just say I have three Command Buttons from which I would like
to launch the userform. Right now I would have:
CommandButton1_Click()
UserForm1.Show
CommandButton2_Click()
UserForm1.Show
CommandButton3_Click()
UserForm1.Show
So I end up having the script in 4 places; I know this is terribly
sloppy, but for some reason I'm just not conceiving of how to call the
other sub() macros from the buttons.....
Thanks!
Chris
Hwo can I call the same macro from several Command Buttons without
having to copy the script to each Click() event?
So, I have a macro:
Sub ShowHello()
UserForm1.Show
End Sub
And let's just say I have three Command Buttons from which I would like
to launch the userform. Right now I would have:
CommandButton1_Click()
UserForm1.Show
CommandButton2_Click()
UserForm1.Show
CommandButton3_Click()
UserForm1.Show
So I end up having the script in 4 places; I know this is terribly
sloppy, but for some reason I'm just not conceiving of how to call the
other sub() macros from the buttons.....
Thanks!
Chris