Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.57 KB

Excel.QueryTable.RowNumbers.md

File metadata and controls

52 lines (31 loc) · 1.57 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
QueryTable.RowNumbers property (Excel)
vbaxl10.chm518075
vbaxl10.chm518075
Excel.QueryTable.RowNumbers
e0e91e2a-f7b6-ef5b-8046-9e93a51395db
05/03/2019
medium

QueryTable.RowNumbers property (Excel)

True if row numbers are added as the first column of the specified query table. Read/write Boolean.

Syntax

expression.RowNumbers

expression A variable that represents a QueryTable object.

Remarks

Setting this property to True doesn't immediately cause row numbers to appear. The row numbers appear the next time the query table is refreshed, and they're reconfigured every time the query table is refreshed.

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 RowNumbers property.

Example

This example adds row numbers and field names to the query table.

With Worksheets(1).QueryTables("ExternalData1") 
 .RowNumbers = True 
 .FieldNames = True 
 .Refresh 
End With

[!includeSupport and feedback]