Posted 31 January 2018, 6:32 am EST
In V9 to hide any column, we used to do the following:
sheet.getColumns(startIndex, endIndex).visible(false);
but, in v11 get columns is deprecated and we have to use getRange.
So i treid following:
sheet.getRange(0,0,3,1,3).visible(false)
and its not working.
So, how do we hide columns/rows in v11?
