複数の行を移動する:moveRows(rowSpec, destinationIndex)【GAS】 | G Suite ガイド

複数の行を移動する。

サンプルコード

// 現在アクティブなシートを取得 var sheet = SpreadsheetApp.getActiveSheet(); // そのシートにある A1:A2 のセル範囲を取得 var rowSpec = sheet.getRange(“A1:A2”); // そのシートにあるそのセル範囲の行を5行目に移動 sheet.moveRows(rowSpec, 5);

var sheet = SpreadsheetApp.getActiveSheet(); // そのシートにある A1:A2 のセル範囲を取得 var rowSpec = sheet.getRange(“A1:A2”); // そのシートにあるそのセル範囲の行を5行目に移動 sheet.moveRows(rowSpec, 5);

引数

名前 説明
rowSpec Range 型 移動したい行のセル範囲
destinationIndex 数値型 移動先の行の行番号

戻り値

無し。

cover_googlespreadsheet-486x290-3947818

この記事が気に入ったら
いいねしよう!

最新記事をお届けします。

Copied title and URL