excel操作之Add Data to a Spreadsheet Cell

2019-06-02 17:42:27王冬梅
Script Code


Set objExcel = CreateObject("Excel.Application") 

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