Tables Property

Applies To

Document object, Range object, Selection object.

Description

Returns a Tables collection that represents all the tables in the specified document, range, or selection. Read-only.

See Also

Cell method, Columns property, ConvertToText method, Rows property.

Example

This example creates a 5x5 table in the active document and then applies a predefined format to it.

Selection.Collapse Direction:=wdCollapseStart
Set myTable = ActiveDocument.Tables.Add(Range:=Selection.Range, _
    NumRows:=5, NumColumns:=5)
myTable.AutoFormat Format:=wdTableFormatClassic2
This example inserts numbers and text into the first column of the first table in the active document.

num = 90
For Each acell In ActiveDocument.Tables(1).Columns(1).Cells
    acell.Range.Text = num & " Sales"
    num = num + 1
Next acell