Macro from "This Workbook" not working when opening document

lojanica

New Member
Joined
Feb 22, 2024
Messages
18
Office Version
  1. 365
Platform
  1. Windows
Hi all
I have the code below in "ThisWorkbook" which I want to run each time the document opens.

VBA Code:
Private Sub Workbook_Open()

ThisWorkbook.Sheets("ActiveUser").Range("B6").Value = Environ("USERNAME")

End Sub

Can anyone help me understand why the code does not work when opening a document but does when I press Run Sub?

Thanks
Milan
 
Do you have any other macros running , Event macros or otherwise ?
If you close the workbook and just before opening it again put this in the immediate window and hit enter
VBA Code:
Application.EnableEvents = True
does it then work ?
It works!

Thanks for help
 
Upvote 0

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
That means you have a macro that that turns it off and either doesn't have the line turning it back on again or is not running that line before exiting the macro either because it is crashing or because of some of the logic that bypasses it.
 
Upvote 0

Forum statistics

Threads
1,215,208
Messages
6,123,642
Members
449,111
Latest member
ghennedy

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