0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【GAS】カラム内の空白セルを削除する

Posted at

スプレッドシートの内容が以下だとして、
メンバ列の順序を変えずに空白セルを詰めたいとき、

メンバ 当番     
佐藤 朝礼
鈴木 炊事
   点呼
田中 掃除
伊藤 風呂

以下のコードを実行すると、

function marchMembers(){
  var sheet = SpreadsheetApp.getActiveSheet();
  var lastRow = sheet.getLastRow();
  var ranges = sheet.getRange(2, 1, lastRow-1);
  var values = ranges.getValues();  

  for(i = values.length - 1; i >= 0; i--){
    if(values[i][0] == ''){
      values.splice(i, 1);
      values.push(['']);
    }
  }

  ranges.clear().setValues(values);
}

こうなる

メンバ 当番     
佐藤 朝礼
鈴木 炊事
田中 点呼
伊藤 掃除
   風呂
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?