avevo realizzato una query web per il prelievo dei dati da una pagina web,
ultimamente anzichè salvare i dati relativi di mio interesse, mi scarica la
pagina intera completa di codice, e pertanto inutilizzabile.
Chiedo cortesemente se vi è la possibilità di sopperire a questa difficoltà.
Posto il codice relativo per eventuale correzione dello stesso.
- Codice: Seleziona tutto
Sub ProvaWeb()
Sheets("Foglio2").Select
Data = Worksheets("Foglio2").Range("N2").Value
Giorno = Format(Data, "yyyy-mm-dd")
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.lottologia.com/?area=10elotto5minuti&action=Archivio&date=" & Giorno _
, Destination:=Range("$A$1"))
.Name = "Archivio"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
Ringrazio chi può aiutarmi a risolvere il problema.
Francesco