getSheetData

allows accessing data and ranges of any sheet

void getSheetData(string sheet_name);

Deprecated

This property is deprecated. Please, use getCellValue, setCellValue, getRangeValue and setRangeValue to access the data of sheet cells.

sheet_namestringthe name of the sheet

Example

// getting a cell value
$$("ssheet").getSheetData(sheet_name).getValue(1,1)
 
// getting a range of cells
$$("ssheet").getSheetData(sheet_name).getRangeValue("A1:B8")
 
// getting a named range
$$("ssheet").getSheetData(sheet_name).getRangeValue("AFTERDATA")

See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.