Login   /   Register

Add data to a spreadsheet cell

Rate this article
     1 votes, average: 4 out of 51 votes, average: 4 out of 51 votes, average: 4 out of 51 votes, average: 4 out of 51 votes, average: 4 out of 5
Loading ... Loading ...
April 1st, 2008 by daniva

Demonstration script that adds the words "Test Value" to cell 1,1 in a new spreadsheet.

Set excel = CreateObject( "Excel.Application" )
 
excel.Visible = True
excel.Workbooks.Add
excel.Cells( 1, 1 ).Value = "Test value"

Posted in MS-Excel

Leave a Reply

You must be logged in to post a comment.

This article was viewed 377 times