0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Excel VBA入門 ~その5 Tips~

Last updated at Posted at 2021-10-26

VBAが嫌いな人が書いたVBA入門記事その5です。初心者の人も最低限だけ身に付けてPythonに移行しましょう。→VBAユーザーのためのPython入門 ~xlwingsでExcelからPythonを呼び出す~

記事一覧

Rangeオブジェクト

  • Range(名前の定義)でデータ取得: Excelで設定した名前の定義を使用してセルに保存されたデータを取得することができる。セルの位置を変えてもコードを書き換える必要が無い。

ListObjectオブジェクト

  • Excelのテーブルに対応するオブジェクト
  • ListObject.ListRows、ListObject.ListColumnsで行ごと、列ごとにループ

FileSyetemObjectオブジェクト

  • オブジェクトベースでのファイル操作

Dictionaryオブジェクト

  • キー付きで値を保存可能。保存した値はキーで取り出せる。
  • 配列やコレクションに比べ、オブジェクトで出来ることが多い

ms docs

  • 「ms docs オブジェクト名」で検索するとマイクロソフト公式のドキュメントがヒットする。
  • 適当にググって分からなければ、メンバー一覧を眺めて機能を探すのも手
0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?