I try to get the price information from a webpage and save it to an excel cell.link I have found the html parser and created the code below and another question on stackoverflow : link
Sub bee()
Dim doc As HTMLDocument
Dim htmTable As HTMLTable
Set doc = New HTMLDocument
With CreateObject("MSXML2.XMLHTTP")
.Open "GET", "http://www.bricklink.com/catalogPOV.asp?itemType=S&itemNo=8868&itemSeq=1&itemQty=1&breakType=M&itemCondition=N&incInstr=Y&incParts=Y"
End With
although I do not understand and know how to proceed. can somebody help with this :S ?