QueryTable.RowNumbers Property

Excel Developer Reference

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

You can 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.

Visual Basic for Applications
  With Worksheets(1).QueryTables("ExternalData1")
    .RowNumbers = True
    .FieldNames = True
    .Refresh
End With

See Also