excel vba http request download data from yahoo finance
I am in the process of making a program I wrote using excel vba faster. The program downloads stock market data from the asx. I want to get data from 2 urls: MY CODE url2 = "http://ichart.finance.yahoo.com/table.txt?s=bhp.ax" Set XMLHTTP = CreateObject("WinHttp.WinHttpRequest.5.1") XMLHTTP.Open "GET", url2, False XMLHTTP.send result = XMLHTTP.responseText ActiveCell.Value = result Set XMLHTTP = Nothing URL 1. http://ichart.finance.yahoo.com/table.txt?s=bhp.ax MY PROBLEM. This file is very large. I thought I could simply store the result of these http requests and print it to the debug window