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

Excelリンク集、Tips集(適宜更新中)

Last updated at Posted at 2020-07-30

社会人エンジニアになってからExcel使う事が激増し、Tipsが溜まっているのでここで少しずつ放出していきます。

改行

検索

小技

VB

VBE

VBEの起動

  • リボンから起動

    • オプションから「開発」リボンを追加
    • リボンの「開発」→「Visual Basic」
  • ショートカット

    • Alt + F11

標準モジュールの追加

  • メニューの「挿入」→「標準モジュール」(ショートカット:Alt + I + M)

もしくは

  • プロジェクト内を右クリックで「挿入」→「標準モジュール」

VBA

VBAでのメモリの解放

nothingを使うことで解放
(オブジェクト変数に参照情報が代入されていない状態)

hoge = nothing           'オブジェクト以外の場合
set hogeobject = nothing 'オブジェクトの場合
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?