Run Visual Basic after starting Excel.

rediffusion

Board Regular
Joined
Apr 24, 2019
Messages
60
I find this code on site.

Code:
Private Sub Workbook_Open()
    UserForm1.Show
End Sub
It's not working.
I want to open «Visual Basic» after starting «Excel» then open the window 'Module1' for example. Is it feasible?
 
Last edited:

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Have you put the macro in the ThisWorkbook module?

To automatically open the VBE and Module 1 when the workbook is opened, you need at least one macro in Module 1 (let's say named MyMacro) :
Code:
Private Sub Workbook_Open()
UserForm1.Show


On Error Resume Next
Application.Goto Reference:="MyMacro"
If Error <> 0 Then _
    Application.VBE.MainWindow.Visible = True
Application.Goto Reference:="MyMacro"
End Sub
 
Upvote 0
Cross posted https://www.excelguru.ca/forums/showthread.php?10078-Run-Visual-Basic-after-starting-Excel

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

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