VBScript Excel Object Model

VBScript Excel Object Model It is used to Perform Operations on Excel Application. Excel Application Excel File / Excel Workbook Excel Sheet / Excel Worksheet Create Excel Application Object Syntax: Set variable = CreateObject(“Class value”) example Set objExcel = CreateObject(“Excel.Application”) VBScript Excel Scripting Examples: 1) Create an Excel file Dim objExcel Set objExcel = CreateObject(“Excel.Application”) … Read more