Hi,
I am newbie to vba programming and so anything you can contribute here would be deeply appreciated.
I would like you to have a look at the sub for processData() and tell me why, in this example, 6 new instances of new dictionaries were created within the same sub routine:
http://www.techbookreport.com/tutori...ctionary2.html.
Are they really necessary? What function, if any, do they serve?
Will you get errors if you leave the last three instances of dictionary object references out?
Set peopleDictionary = New Dictionary
Set salesDictionary = New Dictionary
Set salesDictionary = peopleDictionary(salesPerson)
Set salesDictionary = New Dictionary
Set salesDictionary = peopleDictionary(salesPerson)
Thanks,
pg
Bookmarks