Chirag R Raval
Member
Dear Sir,
What Is "Collections" & "Dictionary" ? what it's use In Excel VBA?
Regards,
Chirag
What Is "Collections" & "Dictionary" ? what it's use In Excel VBA?
Regards,
Chirag
Dear Sir ChihiroHere's more info.
Dictionary, Array, Queue, Stack, SortedList
http://analystcave.com/excel-vba-dictionary-arrays-and-other-data-structures/
Collection
http://analystcave.com/vba-collection/
As side note. Collection is native to VBA and does not require external reference, and thus, will work on Windows or MAC machine. Where as Dictionary is provided by COM libraries and will work on Windows machine only.
To use Dictionary on MAC, you'd need to write your own class module or use one available in GitHub.
https://github.com/VBA-tools/VBA-Dictionary