GAS ⟩ app ⟩ .cellValueAt()
⬆️ 需要: app (app.sheetByName)
// 🔸 app.cellValueAt(sheetName, row, col) app.cellValueAt = function(sheetName, row, col) { return app.sheetByName(sheetName) .getRange(row, col) .getValue(); };
compare: app.valueOfNamedRange(), app.mergedCellValue()
Last updated 2 years ago