Userform button?

I

Ithaca

I'm trying to create a custom button to call a macro that runs via userform
but have been unsuccessful. I can create a button to call the related macro
but I need the actual userform to be called. is there a way to do this?

Also, is there a way to distribute this button to others that may need it?
Or will I have to create it on each computer individually?

Thanks in advance for any help!

-Ithaca
 
J

JCNZ

Hi Ithaca:

Get the custom button to call a macro to load the form:

Sub Loader()
Load Userform1
Userform1.Show
End Sub

If you store the toolbar with the button in a template, then everyone who
accesses the template will see the button.

Cheers.
 

Ask a Question

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.

Ask a Question

Top