Potrzebuję skryptu VBA, który może wyodrębnić dane lokalnej tabeli HTML do Excela. Mam kod (znalazłem go gdzieś w sieci), który działa za pomocą linku URL, ale chcę, aby móc to zrobić za pomocą mojego pliku HTML przechowywanego lokalnie. Błąd jestapp defined or object defined error
Sub HTML_Table_To_Excel()
Dim htm As Object
Dim Tr As Object
Dim Td As Object
Dim Tab1 As Object
'Replace the URL of the webpage that you want to download
Web_URL = "http://espn.go.com/nba/"
'Create HTMLFile Object
Set HTML_Content = CreateObject("htmlfile")
'Get the WebPage Content to HTMLFile Object
With CreateObject("msxml2.xmlhttp")
.Open "GET", Web_URL, False
.send
HTML_Content.body.innerHTML = .responseText 'this is the highlighted part for the error
End With
Column_Num_To_Start = 1
iRow = 2
iCol = Column_Num_To_Start
iTable = 0
'Loop Through Each Table and Download it to Excel in Proper Format
For Each Tab1 In HTML_Content.getElementsByTagName("table")
With HTML_Content.getElementsByTagName("table")(iTable)
For Each Tr In .Rows
For Each Td In Tr.Cells
Sheets(1).Cells(iRow, iCol).Select
Sheets(1).Cells(iRow, iCol) = Td.innerText
iCol = iCol + 1
Next Td
iCol = Column_Num_To_Start
iRow = iRow + 1
Next Tr
End With
iTable = iTable + 1
iCol = Column_Num_To_Start
iRow = iRow + 1
Next Tab1
MsgBox "Process Completed"
End Sub
microsoft-excel
vba
macros
deshawn99
źródło
źródło
Odpowiedzi:
Napisałem ten kod na początku tego tygodnia. Wyszuka pierwszą tabelę i skopiuje wszystkie dane z tabeli HTML minus nagłówki do aktywnego arkusza, zaczynając od A1.
Umieść swój adres HTML w wierszu ie. Nawigacyjnym między pierwszymi cytatami.
źródło