Hello,
i have json files (a few) like here:
All what i want to get list all values starting from VB*.
I am trying to build macro based on code from link below:
https://github.com/VBA-tools/VBA-JSON
Expected result here:
VB_variable
VB_answer
How can i achieve this using loop or some other code?
Best,
Jacek
i have json files (a few) like here:
Code:
{
"Test" : "VB_variable", "Test2" : true,
"Test3": "http://google.com",
"attributes":[
{ "cell":"VB_answer", "property": "highAvailability" }
]
}
All what i want to get list all values starting from VB*.
I am trying to build macro based on code from link below:
https://github.com/VBA-tools/VBA-JSON
Expected result here:
VB_variable
VB_answer
How can i achieve this using loop or some other code?
Best,
Jacek