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 5 years have passed since last update.

SPLITをARRAYFORMULAさせるために使っていた数式が動かなくなった件

Last updated at Posted at 2016-12-21

SpreadsheetのSPLIT関数は、ARRAYFORMULA関数では動作しません。

その解決策として以下のような数式を使っていました。

=ARRAYFORMULA(IFERROR(REGEXEXTRACT(","&input!G2:G,"^"&REPT(",+[^,]+",COLUMN(OFFSET(A1,,,1,6))-1)&",+([^,]+)")))

参考:ARRAYFORMULA() does not work with SPLIT()

それが 2016/12/19 前後から動かなくなっています。
原因は不明ですが、全く違う2つのファイルが両方とも動かなくなっていたので、仕様変更かな?

OFFSET(A1,,,1,6) のあたりを OFFSET(A1,,) とかにすると動きますが、単一の列にしか展開してくれません。

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?