Workbook_Open operates inconsistently

dhregan

New Member
Joined
Mar 30, 2010
Messages
37
Hello -

I have a simple Workbook_Open macro (in the ThisWorkbook module) as follows:

Code:
Private Sub Workbook_Open()

' Ensure that calculations and screen updating are ON
    Application.Calculation = xlCalculationAutomatic
    Application.ScreenUpdating = True


' Leave workbook in working state if last save was in debug mode
    If Range("DEBUG_FLAG").Value = False Then
        Call Set_Defaults
    End If


' Default Migrate Flag to false so that regular processing can commence
    Range("MIGRATE_FLAG").Value = False


End Sub

I get inconsistent behavior when opening the workbook. Normally on the first open attempt, the Workbook_Open macro does not run. However, on the second attempt, the macro runs. Has anyone seen this before? Thanks in advance for any thoughts on a remedy.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
I too have experienced unreliable operation from Workbook_Open. It's why I still rely on the older auto_open instead.
 
Upvote 0
I too have experienced unreliable operation from Workbook_Open. It's why I still rely on the older auto_open instead.

Hello rlv01 -

Would the auto_open reside in the ThisWorkbook module? I assume that I would also delete the current Workbook_Open macro to avoid any conflicts, correct?
 
Upvote 0
The auto_open macro resides in a standard code module.
 
Upvote 0
@dhregan
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
@dhregan
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.

My apologies. I will remember to do so next time.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

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