Hello
I have this URL: Candriam Equities L Australia Class C AUD Cap, LU0078775011:AUD historical prices - FT.com. Using Chrome I can inspect the elements and there I need to be able to read the information about symbol=3280 from data-module-name="HistoricalPricesApp" I've tried various ways, but without any luck.
So far my code is:
but I suppose the information about the symbol is outside the table?
Anyone who can assist?
/S_White
I have this URL: Candriam Equities L Australia Class C AUD Cap, LU0078775011:AUD historical prices - FT.com. Using Chrome I can inspect the elements and there I need to be able to read the information about symbol=3280 from data-module-name="HistoricalPricesApp" I've tried various ways, but without any luck.
So far my code is:
VBA Code:
Dim XMLHTTP As New MSXML2.XMLHTTP, HtmlDoc As New HTMLDocument, TableObj As Object
With XMLHTTP
.Open "GET", "https://markets.ft.com/data/funds/tearsheet/historical?s=LU0078775011:AUD", False
.send
HtmlDoc.body.innerHTML = .responseText
End With
Set TableObj = HtmlDoc.getElementsByTagName("table")
Anyone who can assist?
/S_White