How to Open an Existing Excel Workbook with AutoHotkey

Excel := ComObjCreate("Excel.Application")
Excel.Visible := True

file := "C:\Users\User\Desktop\ExcelFile.xlsx" ; Path to file
Excel.Workbooks.Open(file)