I have a WorkBook on a network drive.
The network is EXTREMELY SLOW, When I open the workbook, the Workbook_Open event is triggered.
Being that the network is slow, the code is executing before the workbook is completely opened thus causing errors.
Is there a way I can delay the Workbook_Open code until the workbook is fully opened, and ready?
I've tried this, but doesn't work. Seems it is always "Ready"
Appreciate the assistance!
The network is EXTREMELY SLOW, When I open the workbook, the Workbook_Open event is triggered.
Being that the network is slow, the code is executing before the workbook is completely opened thus causing errors.
Is there a way I can delay the Workbook_Open code until the workbook is fully opened, and ready?
I've tried this, but doesn't work. Seems it is always "Ready"
VBA Code:
If Not Application.Ready = True Then
Appreciate the assistance!