Hello,
I am trying to make workbook open events run but they will not.
I run a macro from another sheet:
So there should be no problem with events running.
This is the Workbook Open macro
Any suggestions?
I am trying to make workbook open events run but they will not.
I run a macro from another sheet:
Code:
Public Sub Open_Chart()
Application.EnableEvents = True
Workbooks.Open Filename:="C:\CLIPr\CCharts.xls"
End Sub
So there should be no problem with events running.
This is the Workbook Open macro
Code:
Private Sub Workbook_Open()
Worksheets("CR").Activate
ActiveSheet.Unprotect Password:=PW
ActiveWindow.FreezePanes = False
Range("A5").Select
ActiveWindow.ScrollRow = 1
Application.ScreenUpdating = True
ActiveSheet.Protect Password:=PW
End Sub
Any suggestions?