I have a webpage which is in xml and I'd like to read this information into an excel macro that I am making. However, I'm not quite sure how to go about it in visual basic. I've been coming at it like this...
Set wb = Workbooks.OpenXML(Filename:=requestURL, LoadOption:=xlXmlLoadImportToList)
Which is OK in a sense that I get the data into a workbook that I can then manipulate. However, I'd much prefer for the data not to be put into a workbook, i.e read it in directly. I've seen some people approach this by reading the webpage and storing it as a string first, but I'm wondering if there is a more direct approach built-in to VBA? Thanks.