Posted 25 September 2017, 8:03 am EST
Hi,
We have following lines of code to get the RowInfo from cellRange.tag() but cellRange.tag() returns null value for spread 10.
var cellRange = activeSheet.getRange(rowNr, -1, 1, -1);
if (cellRange === undefined || cellRange === null) return null;
if (cellRange.tag() === undefined || cellRange.tag() === null)
return null;
return cellRange.tag().SubData;
Note: The same code returns RowInfo for old spread (spread9).
Could you please help?
Thanks,
Saurabh