Hello,
I have two worksbooks, call them A and B. workbook A references cells in workbook B. When I manually open workbook B, the cells in workbook A update. When I insert code to open workbook B using Workbooks.Open, workbook B does open, but the cells in A do NOT update. I'm at a loss as to what to try. Here is my code:
Private Sub Workbook_Open()
Call ReadDataFromClosedFile
End Sub
Sub ReadDataFromClosedFile()
Application.ScreenUpdating = False
Dim src1 As Workbook
Set src1 = Workbooks.Open(".....", False, False)
End Sub
thank you in advance.
Regards
I have two worksbooks, call them A and B. workbook A references cells in workbook B. When I manually open workbook B, the cells in workbook A update. When I insert code to open workbook B using Workbooks.Open, workbook B does open, but the cells in A do NOT update. I'm at a loss as to what to try. Here is my code:
Private Sub Workbook_Open()
Call ReadDataFromClosedFile
End Sub
Sub ReadDataFromClosedFile()
Application.ScreenUpdating = False
Dim src1 As Workbook
Set src1 = Workbooks.Open(".....", False, False)
End Sub
thank you in advance.
Regards