当前位置:Gxlcms > JavaScript > excel操作之Add Data to a Spreadsheet Cell

excel操作之Add Data to a Spreadsheet Cell

时间:2021-07-01 10:21:17 帮助过:56人阅读

Script Code

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

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

人气教程排行