Home  >  Article  >  Web Front-end  >  Add Data to a Spreadsheet Cell_javascript skills in excel operation

Add Data to a Spreadsheet Cell_javascript skills in excel operation

WBOY
WBOYOriginal
2016-05-16 19:12:241200browse

Script Code

Copy code The code is as follows:

Set objExcel = CreateObject("Excel .Application")

objExcel.Visible = True
objExcel.Workbooks.Add
objExcel.Cells(1, 1).Value = "Test value"
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn