La pagina da te linkata non esiste più, ora il televideo lo trovi qui
http://www.televideo.rai.it/televideo/pub/pagina.jsp?p=591&s=1&r=Nazionale&idmenumain=2&x=24&y=8ma la pagina non è adatta, a quanto sembra, per una QueryTables
Sul web, comunque, ci sono altri siti che pubblicano l'estrazione quasi in tempo reale e non so se ti può essere utile questa macro
- Codice: Seleziona tutto
Sub Macro1()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.repubblica.it/supertoto/lotto.html", Destination:=Range("A1") _
)
.Name = "lotto"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = "1"
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub