I\'m using excel VBA. I want to press a button that opens another file directly without the effect of \"choosing file window\".
This is the current code:
If the file is in the same folder as the document containing your VBA macro, use
ThisWorkbook.Path
for example:
Workbooks.Open(ThisWorkbook.Path & "\ObsReportExcelWorkbook.xlsx")
(this works even if the document is not the active one any more, or you changed the current directory).