In Excel VBA I write: Set mWB = Application.Workbooks("File.xlsx")
Then: mWB.Close() I noticed is a possibility, but in the autocomplete list I only see close, not open.
How can I open an excel file in VBA using a variable of type Excel (Dim mWB As Workbook) that holds a reference to the file?
I don't want to use: Application.Workbooks.Open ("File.xlsx"), which I know is possible!