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?

More than 5 years have passed since last update.

LibreOffice の Calc で Excel ファイルを開いたら、行列のマージでエラーになったので修正する

Last updated at Posted at 2018-07-09

LibreOffice の Calc で Excel ファイルを開いたら、
以下の様な SMALL 関数でエラーになった。

=IF(G$1<ROW(),"",SMALL((B:B,E:E),ROW()))

Excel で上記の様に記載すると、
LibreOffice の Calc で開くと、

=IF(G$1<ROW(),"",SMALL((B:B~E:E),ROW()))

と勝手に変換されて、再度 Excel で開くと、エラーとなる。

なかなか情報がなくて困りましたが、
なんとか解決出来たので、シェア。

「,」でも、「~」でもなく、「:」とすると、
うまくいきました。

=IF(G$1<ROW(),"",SMALL((B:B:E:E),ROW()))

以上。

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?