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のgetRangeで引っかかってしまったこと

Posted at

getRange()でシートの一部を抜き出して、加工し、setValues()でシートに書き出そうとした。

ただ、抜き出した部分が1列分のデータで、それを加工して、1列にsetValuesしようとするが、

Exception: The number of columns in the data does not match the number of columns in the range. The data has 1 but the range has 5.

みたいな感じでエラーが出た。

これは結局getRange()の引数について勘違いしていて、

Sheetオブジェクト.getRange(行番号, 列番号, 行数, 列数)
が正しいのに、

自分の中で
Sheetオブジェクト.getRange(はじめの行番号, はじめの列番号, 最後の行番号, 最後の列番号)
と誤って理解していたことからエラーが出た。

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?