Column.Cells property (PowerPoint)
Returns a CellRange collection that represents the cells in a table column or row. Read-only.
Syntax
expression.Cells
expression A variable that represents a Column object.
Return value
CellRange
Example
This example creates a new presentation, adds a slide, inserts a 3x3 table on the slide, and assigns the column and row number to each cell in the table.
Dim i As Integer
Dim j As Integer
With Presentations.Add
.Slides.Add(1, ppLayoutBlank).Shapes.AddTable(3, 3).Select
Set myTable = .Slides(1).Shapes(1).Table
For i = 1 To myTable.Columns.Count
For j = 1 To myTable.Columns(i).Cells.Count
myTable.Columns(i).Cells(j).Shape.TextFrame _
.TextRange.Text = "col. " & i & "row " & j
Next j
Next i
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.