1
1

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 1 year has passed since last update.

Google Apps ScriptAdvent Calendar 2023

Day 14

GASでシート中のセル結合を解除してやるぜヒャッハー!

Posted at

なんで世の中の人々はそんなにセル結合好きなん???

まぁ行っても仕方がないんだけどさ。

そんなあなたにこれあげる!
シート中のセル結合を全部解除してくれるよ!

function breakrange(){
 const ss = SpreadsheetApp.getActiveSpreadsheet();
 const sh = ss.getActiveSheet();
 const ranges = sh.getDataRange().getMergedRanges();

 for (let i=0;i<ranges.length;i++){
  let mergeRange = ranges[i];
  mergeRange.breakApart();
 }

}

こんな感じ。
ただし条件が一つ。
範囲選択のためにgetSataRange()を使っているので、何かが入力されているセルの上の行までしか効きません。
なので、適当に右下の方に0とか入力してから関数動かしてください。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?