ssgetSheetByNameData
ssgetSheetByNameData is a utility function used in spreadsheet automation libraries to retrieve data from a sheet by its name within a given spreadsheet. It returns the sheet’s contents as a two-dimensional array of values, suitable for programmatic processing.
Typically, the function accepts two arguments: a reference to the spreadsheet (either as an object or an
Return value and options: The primary return is a 2D array where each sub-array represents a row
Usage notes: The function is commonly employed in scripts that need to import tabular data from named
See also: getSheetByName, getDataRange, getValues, and related spreadsheet APIs.