TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

Write data to worksheet cell

Description

Writes the data (the Hello world phrase) to the worksheet third column of the fourth row.

(function()
{
    Api.GetActiveSheet().GetRange("C4").SetValue("Hello world");
})();

Methods used: GetActiveSheet, GetRange, SetValue

Reference Microsoft VBA macro code
Sub example()
    Cells(3, 4)="Hello world"
End Sub
Result

Write data