概要
Google Apps Script(GAS)で、A1形式のアドレスを取得する方法です。
使用するメソッド
構文
Rangeオブジェクト.getA1Notation()
引数
なし
戻り値
String
サンプルプログラム
function sample() {
// アクティブなスプレッドシートを取得
const spreadSheet = SpreadsheetApp.getActiveSpreadsheet();
// 指定したシートの取得
const sheet = spreadSheet.getSheetByName("シート1");
// Rangeの取得(A1:A3)
const range = sheet.getRange(1,1,3);
// A1形式のアドレスを取得
const a1 = range.getA1Notation();
Logger.log(a1);
}
10行目で範囲を指定して、13行目でA1表記の文字列で取得をしています。
上記サンプルでは、「A1:A3」が取得されます。