I have tried to check the world currencies using the VBA below by debugging, I seem not to get anywhere, can someone spot the error here?
Code:
Option Compare Database
Option Explicit
Public Sub exceljson()
Dim http As Object, JSON As Object, i As Integer
Set http = CreateObject("MSXML2.XMLHTTP")
http.Open "GET", "https://www.xe.com/currencyconverter/convert/?Amount=1&From=USD&To=GBP", False
http.Send
Set JSON = ParseJson(http.responseText)
i = 2
Debug.Print JSON
End Sub