Io non l'ho mai fatto; alcuni suggerimenti:
1) Se Excel funziona, importare da Excel ad Access credo sia la cosa più semplice
2) Puoi esplorare l'opzione File / Carica Dati Esterni / Import (che prevede anche il formato HTML)
3) Verifica se il sito in questione offre i dati che ti interessano sotto forma di download di file in formato importabile in Access
4) Il seguente codice l'ho trovato sul web e non ho idea se funziona e se fa quello che vuoi:
- Codice: Seleziona tutto
Sub LinkHTML()
Dim dbs As Database
Dim tdfHTML As TableDef
Dim rstSales As Recordset
' Open the Microsoft Access database.
Set dbs = CurrentDb
' Create a TableDef object.
Set tdfHTML = dbs.CreateTableDef("CategoriesHTMLTable")
' Set the connection string to specify the source database type and
' the full path to the file that contains the table you want to link.
tdfHTML.Connect = "HTML Import;" _
& "DATABASE=http://home/someVirtualDirectory/categories.html"
'http://www.federalreserve.gov/releases/h15/update/"
' Set the SourceTableName property to the name of the table you want to access.
tdfHTML.SourceTableName = "Categories"
' Append the TableDef object to the TableDefs collection to create a link.
dbs.TableDefs.Append tdfHTML
End Sub
HTH.
Alessandro