LoginSignup
0
1

More than 5 years have passed since last update.

Excel 全シート名取得・一覧表示 自分用メモ

Posted at

※自分用メモ

Excel 全シート名取得・一覧表示 VBA

  • Excel開く
  • Alt+F11で、Visual Basic Editorを起動
  • Ctrl+Gで、イミディエイトウィンドウを開く
  • 以下ソースをコピペして、Enter
For Each i In ThisWorkbook.Sheets: debug.print i.name : next i
  • シート一覧がウィンドウ内に表示されるので、後はよしなに

image.png

0
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
0
1