Makro s importem dat z www můžete vypadat například takto:
With ActiveSheet.QueryTables.Add(Connection:="URL;http://www.pcexpert.cz/mini-notebooky/?listType=table", Destination:=Range("A1"))
.Name = "?listType=table"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlAllTables
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Jedná se o nabídku notebooku z e-shopu. Při importu jsem spustil záznam makra. Zkuste si makro spustit. Pro své potřeby můžete udělat něco podobného.citovat
With ActiveSheet.QueryTables.Add(Connection:="URL;http://www.pcexpert.cz/mini-notebooky/?listType=table", Destination:=Range("A1"))
.Name = "?listType=table"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlAllTables
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Jedná se o nabídku notebooku z e-shopu. Při importu jsem spustil záznam makra. Zkuste si makro spustit. Pro své potřeby můžete udělat něco podobného.citovat