Last updated 2 years ago
Was this helpful?
⟩ ⟩ .mergedCellValue()
⬆️ 需要: app, ,
// 🔸 app.mergedCellValue(rangeName, separator='') app.mergedCellValue = function(rangeName, separator='') { return app.range.byName(rangeName) .getValues() // ⭐ 2D array .flat() // ⭐ 1D array .join(separator); };
app.valueOfNamedRange() - value of a single cell.
app.cellValueAt()
javascript ⟩ ⟩
.