top of page
- API -

reaper.AZ_GSheet_SetCellValue(connection, sheetId, cell, value)

- API Detail-

▼Input values

connection(GSheetConnection): spreadsheet connection info

sheetId(integer): target sheet ID

cell(string): cell to set the value to (A1 notation)

value(varType): value to set


▼Output values

None

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())                

require("reaper_AZSTOKE_GOLD")                


spreadSheetId = "**********"


sheetId = "**********"


connection = reaper.AZ_GSheet_Connect_UserAccount(spreadSheetId)


reaper.AZ_GSheet_SetCellValue(connection, sheetId, "B3", "TEST")


Msg(reaper.AZ_GetErrorCode())


reaper.AZ_GSheet_Disconnect(connection)

GoogleSpreadSheet

AZ_GSheet_SetCellValue

Supported versions:

1.5.0

onwards

Set cell value (by cell address)

bottom of page