title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
QueryTable.Destination property (Excel) |
vbaxl10.chm518086 |
|
|
11dc755d-1686-18e9-88df-b885328e8ef5 |
05/03/2019 |
medium |
Returns the cell in the upper-left corner of the query table destination range (the range where the resulting query table will be placed). The destination range must be on the worksheet that contains the QueryTable object. Read-only Range.
expression.Destination
expression A variable that represents a QueryTable object.
If you import data by using the user interface, data from a web query or a text query is imported as a QueryTable object, while all other external data is imported as a ListObject object.
If you import data by using the object model, data from a web query or a text query must be imported as a QueryTable, while all other external data can be imported as either a ListObject or a QueryTable.
Use the QueryTable property of the ListObject to access the Destination property.
This example scrolls through the active window until the upper-left corner of query table one is in the upper-left corner of the window.
Set d = Worksheets(1).QueryTables(1).Destination
With ActiveWindow
.ScrollColumn = d.Column
.ScrollRow = d.Row
End With
[!includeSupport and feedback]