excel操作之Add Data to a Spreadsheet Cell

2019-12-26,,,,,

Script Code

复制代码 代码如下:
Set objExcel = CreateObject("Excel.Application") 

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

《excel操作之Add Data to a Spreadsheet Cell.doc》

下载本文的Word格式文档,以方便收藏与打印。