【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]Cutbefore after 【VBA】文字列から指定文字より前/後ろをカットする|InStrRev/Left$/Mid$ -

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

時間計算のDateAdd 【VBA】DateAddで時間の足し算・引き算 -

[VBA]extract the filename 【VBA】フルパスからファイル名と拡張子を取得する -

ボタンをリボンに設置 【VBA】ボタンをリボンに設定する -

[VBA]buttonに何が登録されてるか 【VBA】ボタンに登録されているマクロ名を調べたい