Cell Method

Applies To

Table object.

Description

Returns a Cell object that represents a cell in a table.

Syntax

expression.Cell(Row, Column)

expression Required. An expression that returns a Table object.

Row Required Long. The number of the row in the table to return. Can be an integer between 1 and the number of rows in the table.

Column Required Long. The number of the cell in the table to return. Can be an integer between 1 and the number of columns in the table.

See Also

Cell object, Cells property, Column property, Columns property, Table object, Tables property.

Example

This example creates a 3x3 table in a new document and inserts text into the first and last cells in the table.

Set newDoc = Documents.Add
Set myTable = newDoc.Tables.Add(Selection.Range, 3, 3)
With myTable
    .Cell(1,1).Range.InsertAfter "First cell"
    .Cell(myTable.Rows.Count, _
        myTable.Columns.Count).Range.InsertAfter "Last Cell"
End With
This example deletes the first cell from the first table in the active document.

If ActiveDocument.Tables.Count >= 1 Then
    ActiveDocument.Tables(1).Cell(1, 1).Delete
End If