hello.
put this in Thisworkbook
Private Sub Workbook_Open()
'Run the procudure in 4 sec from now
Application.OnTime Now + TimeValue("00:00:04"), "Wbopen"
End Sub
and this in a module
Sub Wbopen()
Dim wb As Workbook
Application.ScreenUpdating = False ' turn off the screen updating
Set wb = Workbooks.Open("F:\test.xlsm") 'CHANGE THIS TO YOUR FILE
ThisWorkbook.Close False: 'Close this workbook discarding changes
Application.ScreenUpdating = True ' Now let the user see what has happened.. This may happed automatically??
End Sub
I hope this is what you wanted.
Bookmarks