Friday, April 9, 2010

VBScript - Add Data to a Spreadsheet Cell

VBScript - Add Data to a Spreadsheet Cell

Set objExcel = CreateObject("Excel.Application")

objExcel.Visible = True
objExcel.Workbooks.Add
objExcel.Cells(1, 1).Value = "Test value"

[Via]