くら
GASでスプレッドシートの指定セルのメモを取得する方法を紹介します!
指定セルのメモを取得:getNote()
指定セルのメモを取得します。
パラメータ
名前 | タイプ | 説明 |
---|---|---|
なし | なし | なし |
戻り値
String | メモの内容 |
説明
function myFunction() {
const sheet = SpreadsheetApp.getActiveSheet();
const ss = SpreadsheetApp.getActiveSpreadsheet();
const range = ss.getSheetByName("サンプルA").getRange("A2");
// メモを取得
console.log(range.getNote());
}
A2セルのメモを取得してみます。
サンプルコードを実行すると、A2のメモの中身を取得できました!
まとめ
くら
スプレッドシートの指定セルのメモを取得する方法でした!
コメント