I'm using IBM Personal Communications emulator to run a macro which launches an Excel application.
set appExcel = CreateObject("Excel.Application")
appExcel.Visible = true
set appWB = appExcel.workbooks.Open("LINK")
Set appWS = appWB.Sheets("Sheet1")
It opens up everything in Excel 2016 by default. Is it possible to specify the version of Excel that will be opened up in Visual Basic?