0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[GAS] 複数のシートを読み込む方法

Posted at

やりたいこと

複数のシートがあるスプレッドシートのシート名を順に読み込む

コード

function getSheetName() {
  let activeSheet = SpreadsheetApp.getActiveSpreadsheet().getSheets();
  let sheetLength = activeSheet.length;
  let sheetLists = [];

  for(var i=0; i < sheetLength; i++){
    sheetLists.push(activeSheet[i].getSheetName());
  }
  console.log(sheetLists);
}
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?