I\'m trying to get VBA to fire the commands
sImportFilePath = Application.GetOpenFilename(FileFilter:= _ \"Excel Files (*.xls), *.xls\", Title:=\"Choose The
Just adding a single call to "DoEvents" before calling Workbooks.Open will already do the trick. So the folloiwng snippet will work:
DoEvents Workbooks.Open Filename:="C:\MyPath\MyFile.xlsx"