【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
編集後記:
この記事の内容がベストではないかもしれません。