When you try to use the Sheet.getRange(row, column, numRows, numColumns)
method Sheet.getRange(row, column, numRows, numColumns)
, which is in the Google App Scripts documentation (for Google Sheets), you get the error: Не удается обнаружить метод getRange(number,number,number,number)
. What could be the problem? Why is there a method in the documentation, but in fact it is not? At the same time, all other overloaded methods besides this also “do not exist”.
|
var sheet = SpreadsheetApp.openById('/*Здесь идёт ID таблицы*/');
. And all methods work, except the above. - Janislav Kornevoverloading
can not be. - oshliaer