我是宏的新手,并记录它们。我创建了一个带有参数的网络查询,它根据我选择的单元格编辑查询的一部分。我现在必须运行这个网络查询 800 多次。所以我记录了自己在选中“使用相对引用”的情况下这样做。但它总是将 web 查询放在我记录宏的同一个单元格中,而不是放在我为 web 查询选择的单元格旁边的单元格中。
例如:我根据 A1 中的引用在 A2 中运行了一个查询。因此,我希望宏通过使用来自 B1 的信息来运行查询并将其放入 B2,但它总是将其放入 A2。
编码!
With ActiveSheet.QueryTables.Add(Connection:= _
"FINDER;C:\Users\alillien.ASSOCIATED_NT\AppData\Roaming\Microsoft \Queries\990Finder.iqy" _
, Destination:=Range("$C$576"))
.Name = "990 Finder_284"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = False
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingAll
.WebTables = """MainContent_GridView1"""
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
ActiveCell.Offset(2, 0).Range("A1").Select
End Sub
我知道这是因为 "Destination:=Range("$C$576")" 行,但我不知道如何将其编辑为相对于我的起点/我单击可调整查询的位置。
非常感谢!