Code snippet to loop through JSON data
Dim jsonObject As Object, item As Variant | |
Set jsonObject = JsonConverter.ParseJson(strResponse) | |
For Each item In jsonObject | |
'do something with json object | |
Next item |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment