Search here for all the info you want in this Blog

How To Add Data to a Spreadsheet Cell


Set objExcel = CreateObject("Excel.Application")

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

No comments:

Post a Comment