Answers for "vba find sub dictionary"

VBA
0

vba find sub dictionary

Sub NestedDictionary()
    Dim d1, d2
    Set d1 = CreateObject("Scripting.Dictionary")
    Set d2 = CreateObject("Scripting.Dictionary")

    d1.Add "BPH", "Hello"
    d2.Add "Shaun", d1
    Debug.Print d2("Shaun").Item("BPH")
End Sub
Posted by: Guest on February-14-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language