How to create a Range from Table in schematiq -
i have schematiq table containig data have read csv , parsed columns. want create myself data link range object representing each column can pass multiple stats functions.
i've tried =rng.subset(b5,1,1)
on table had hoped create range first column, in views see results in 1x1 range containing whole table.
what's correct syntax?
when return array schematiq function, there 2 possible forms array take. 1 "range", i.e. data-linked object exist in single cell regardless of size, other array function result, fill whatever range array formula has been entered in.
the easiest way values out of table array use tbl.getvalues()
, if use without column
argument returns rectangular array containing data in table.
however, returned array function result, in order put range need use rng.create()
on result. following should work in case:
=rng.create(tbl.getvalues(b5))
or, specific column:
=rng.create(tbl.getvalues(b5, "columnname"))
Comments
Post a Comment