Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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