How to... embed a user form?

Bubba

Board Regular
Joined
May 1, 2002
Messages
73
Hi,

Can anyone tell me how I embed the 'UserForm1' that I've created into my spreadsheet (sheet1)? Currently to use it i have to go into Visual Basic and 'Run Userform'...

Cheers

By the way, I'm still quite new to this VB malarkey
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
You could put:

Userform1.show

Into your Worksheet Activate event, or have a button on the sheet with the same code on it
 
Upvote 0
Not sure exactly what you mean by embed, but I'll give it a shot.

If what you want is the form to open when the workbook is opened, it's pretty easy.

In the VB editor, double-click This Workbook from the project pane. Type the following:

Private Sub Workbook_Open

UserForm1.Show

End Sub

This will open the userform whenever the worksheet is opened. Check the Excel help files for Event Procedures (since that is what you are using) for more details.

If this is not what you meant, please clarify and I'll try again...

K
 
Upvote 0

Forum statistics

Threads
1,213,515
Messages
6,114,080
Members
448,548
Latest member
harryls

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top