How do I create an excel file using VBScript? I searched the net but it just mentions opening an existing file.
VBScript
This is the extraction from the Internet
'Create Excel Set objExcel = Wscript.CreateObject("Excel.Application") objExcel.visible = True Set objWb = objExcel.Workbooks.Add objWb.Saveas("D:\Example.xlsx") objExcel.Quit