My Son found some code and modified to work for me.
Public Function fncSharePrice(strSymbol)
Dim strURL As String
strURL = "h t t p : / / download.finance.yahoo.com/d/quotes.csv?s=" & strSymbol & ".AX&f=sl1&e=.csv"
Dim oXHTTP As Object
Set oXHTTP = CreateObject("MSXML2.XMLHTTP")
oXHTTP.Open "GET", strURL, False
oXHTTP.Send
'Use split to Return Price only
Me.MarketPrice = Split(oXHTTP.responseText, ",")(1)
Set oXHTTP = Nothing
End Function