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

[EXCEL関数]ファイル名やシート名を表示する

Last updated at Posted at 2021-05-02

備忘メモ:CELL 関数

説明

ファイル名やシート名を取得する関数。

関数の例

フルパス+シート名

=CELL("filename")

ファイル名

=MID(CELL("filename"),FIND("[",CELL("filename"))+1,FIND("]",CELL("filename"))-FIND("[",CELL("filename"))-1)

シート名

=RIGHT(CELL("filename"),LEN(CELL("filename"))-FIND("]",CELL("filename")))
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?