Skip to main content

All Questions

Tagged with
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 = ....
user2523167's user avatar