Reference cells
Reference cells from JavaScript.
Referencing tables (and named outputs)
// NOTE: uses the same A1 notation as Formulas
// References existing Table1 and is read in as array of arrays
let x = q.cells("Table1")
// Get a single column out of table into an array
let x = q.cells("Table1[column_name]")
// Get the table headers
let x = q.cells("Table1[#HEADERS]")
// Reference a range of columns in a table
let x = q.cells("Table_name[[column_name:column_name]]")Referencing individual cells
Referencing a range of cells
Referencing another sheet
Unbounded ranges
Unbounded column references
Unbounded row references
Relative vs absolute references
Last updated
Was this helpful?