【VBA】Dictionaryのセット|CreateObject(“Scripting.Dictionary”)
作成日:2022-12-03
更新日:2025-10-03

Dictionaryをセットする
CreateObject(“Scripting.Dictionary”)を使う
Private Sub Test()
Dim dic As Object: Set dic = CreateObject("Scripting.Dictionary")
If Not dic.Exists(xx) Then 'キー(xx)がdicに存在しなければ
dic.Add xx, yy 'キー(xx)と要素(yy)を追加する
End If
End Sub関連記事
2022-12-03
編集後記:
この記事の内容がベストではないかもしれません。
記事一覧
-

[VBA]Horizontal Paste1D array 【VBA】一次元配列を横方向にシートに貼り付け【範囲をリサイズする】 -

[VBA]Transpose2D Array 【VBA】配列の縦横変換|WorksheetFunction.Transpose は使わない -

[VBA]Run PowerShellfrom VBA 【VBA】指定場所にあるPowerShellスクリプトを実行する -

[VBA]Trimwhitespace 【VBA】先頭,末尾,両端の空白を削除する|Trim -

グラフ設定を変更する 【VBA】グラフ設定を動的に変更する -

[VBA]終了のメッセージボックス 【VBA】マクロ終了時のメッセージ|タイム付きmsgbox