
Sub thematrix()
Dim ie As New InternetExplorer
Dim pippo As String
For i = 2 To 8093
For x = 1806 To 8093
pippo = "parte iniziale indirizzo" & Cells(x, 1) & "parte centrale indirizzo" & Cells(1, i) & "parte finale indirizzo"
ie.Navigate pippo
'ie.Visible = True
Do
DoEvents
Loop Until ie.readyState = READYSTATE_COMPLETE
Dim doc As HTMLDocument
Set doc = ie.document
Dim sdd As String
sdd = Trim(doc.getElementsByTagName("value")(1).innerText)
Cells(x, i) = sdd
Next
Next
End Sub |
sdd = Trim(doc.getElementsByTagName("value")(1).innerText) |
