GAS スプレッドシートの名前付き範囲を削除する
- 作成日 2022.08.09
- Google Apps Script
- Google Apps Script
GAS(Google Apps Script)で、スプレッドシートの名前付き範囲を削除する手順を記述してます。
環境
- OS windows11 home
- ブラウザ chrome 100.0.4896.60
名前付き範囲を削除
名前付き範囲を削除するには、「removeNamedRange()」を使用します。
sheet.removeNamedRange("範囲の名前")
以下の、シートの1列目を固定に設定してみます。
コードを実行します。
function myFunction() {
// GASを作成したスプレッドシート
let spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
// スプレッドシートの最初のワークシートを取得
let sheet = spreadsheet.getSheets()[0];
// 名前付き範囲の削除
spreadsheet.removeNamedRange("テスト範囲");
}
削除されていることが確認できます。
-
前の記事
PostgreSQL アルファベットの小文字を大文字に変換する 2022.08.09
-
次の記事
PostgreSQL 時間から日数を計算する 2022.08.09
コメントを書く