Skip to content

Instantly share code, notes, and snippets.

@sudiptamondal
Created February 25, 2020 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sudiptamondal/b02652298fb08ece95ca0c2bae1a3e11 to your computer and use it in GitHub Desktop.
Save sudiptamondal/b02652298fb08ece95ca0c2bae1a3e11 to your computer and use it in GitHub Desktop.
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