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 name is fixed you can use the ActiveWorkbook.Path function to return the path of the current workbook:
Dim FileName as string FileName = ActiveWorkbook.Path & "\myfile.xlsx
Check if you need that extra slash character.