All Questions
1 question
0
votes
1
answer
476
views
VBA: getHTML as custom function - Avoid several HTML retrivals
I am using this to retrieve HTML from a webpage
Function GetHTML(url As String) As String
With CreateObject("MSXML2.XMLHTTP")
.Open "GET", url, False
.Send
GetHTML = ....