Shloime
Board Regular
- Joined
- Oct 25, 2023
- Messages
- 60
- Office Version
- 365
- 2021
- 2019
- 2016
- Platform
- Windows
Please can anyone help me with how to loop through a dictionary in VBA some items/keys may have a single value and some have a dictionary/collection object and inside may be another collection and inside that may be more collections/dictionary objects.
when I tried to do
I found that some have no result som how can i refer to it g(t) won't work as t is empty
I copied some code from the Internet Main 1 now is parse JSON how can I know once have an object set if it holds a collection or dictionary may be somehow in the watch window?
when I tried to do
VBA Code:
set G= ....
for each t in g
debug.print t
next
I copied some code from the Internet Main 1 now is parse JSON how can I know once have an object set if it holds a collection or dictionary may be somehow in the watch window?