Hi all,
I think this is the most hilarious praser you've seen so far.
Just that I was able to understand, up till now.
Now, I want to get the date and hour, but i don't can...
If someone has the time to give some directions, I thank her in advance.
And this is my code.
I think this is the most hilarious praser you've seen so far.
Just that I was able to understand, up till now.
Now, I want to get the date and hour, but i don't can...
If someone has the time to give some directions, I thank her in advance.

And this is my code.
Code:
Sub ParseHTML2()
Dim htm As Object: Set htm = CreateObject("htmlfile")
Dim tr As Object
Dim doc As HTMLDocument
Sheets("Sheet2").Activate
Range("A1:O1").ClearContents
With CreateObject("msxml2.xmlhttp")
.Open "GET", "http://www.betexplorer.com/soccer/netherlands/eerste-divisie-2014-2015/den-bosch-almere-city/I7kIHAQP/", False
.send
htm.body.innerHTML = .responseText
End With
'aa = htm.getElementsByTagName("a")(52).innerText 'ok
'Sheets("Sheet2").Range("A1").Value = aa
ab = htm.getElementsByTagName("div")(13).getElementsByTagName("li")(2).innerText ' ok
Sheets("Sheet2").Range("A1").Value = ab
ag = htm.getElementsByTagName("h1")(0).innerText ' ok
Sheets("Sheet2").Range("B1").Value = ag
ac = htm.getElementsByTagName("h2")(0).innerText 'ok
Sheets("Sheet2").Range("D1").Value = ac
ad = htm.getElementsByTagName("h2")(2).innerText ' ok
Sheets("Sheet2").Range("E1").Value = ad
ar = htm.getElementById("match-date").innerText ' ???
Sheets("Sheet2").Range("C1").Value = ar
ae = htm.getElementById("js-score").innerText ' ok
Sheets("Sheet2").Range("F1").Value = ae
af = htm.getElementById("js-partial").innerText 'ok
Sheets("Sheet2").Range("G1").Value = af
End Sub