我搜索了互联网,但在任何地方都找不到来自单元格链接的动态查询。在excel中,我有生成此数据的webquery:
我在 excel Sheet("CustomReport") 中有数据:
SalesOrder Value1 Value2 Value3 Links
1 Jonas Station1 8 https://x.com=1
2 Greg Station1 5 https://x.com=2
3 Anton Station1 1 https://x.com=3
... ... ... ... ...
此查询中的行数在刷新时总是不同的。
基于这个 webquery,我需要在宏中生成动态 webquery。例如:DynamicQuery1 将报表https://x.com=1中的数据保存到工作表名称“Orders”,从 A1 开始并结束 A{X} 值(报表具有不同的行数)。
DynamicQuery2 将报告https://x.com=2中的数据保存到同一工作表“订单”,但从 A{X+1} 开始。
我有这样一个宏,但它只适用于第一行。
子测试()
Dim URL As String
URL = Sheets("CustomReport").Range("E2").Value
Sheets("Orders").Select
With ActiveSheet.QueryTables.Add(Connection:="URL;" & URL, Destination:=Range("$A$1"))
.Name = "team2289_2"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = False
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingAll
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = True
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
我需要每 1 小时刷新一次这个宏。任何人都可以根据这种方式给我宏吗?