Set reference to Microsoft Forms 2.0 Object Library and Microsoft HTML Object Library
This gets you the table:
Sub ExcelForum()
Dim a As New MSForms.DataObject, b As New HTMLDocument
With CreateObject("WinHTTP.WinHTTPRequest.5.1")
.Open "GET", "http://ws.photon.info/public/app_old/database/solarmodule_en.aspx"
.Send
b.body.innerHTML = .responseText
End With
a.SetText b.getElementsByTagName("table")(5).outerHTML
a.PutInClipboard
ActiveSheet.Range("A1").PasteSpecial
End Sub
If you go and play around with it, please note that the link is actually different from the one you posted
Bookmarks