A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
One thing that might help:
When the text won't fit in the cell, it'll wrap and if wrapping would cause it to fall outside the borders of the cell, PowerPoint will increase the height of the cell to accommodate (actually, the height of the entire row).
You can get a fair idea, though not a totally accurate one, of which cell's text is causing the row height to increase by looking at the bounding box of each cell's text. The bounding box is the smallest rectangle that will just contain the text. I had a go at this with one specific cell on one slide (slide 1, table is the first shape, cell 2,2).
With ActivePresentation.Slides(1).Shapes(1).Table
With .Cell(2, 2).Shape
Debug.Print .TextFrame.TextRange.Text
Debug.Print "Cell coordinates"
Debug.Print .Left
Debug.Print .Top
Debug.Print .Width
Debug.Print .Height
Debug.Print "Text bounding box"
With .TextFrame.TextRange
Debug.Print .BoundLeft
Debug.Print .BoundTop
Debug.Print .BoundWidth
Debug.Print .BoundHeight
With ActivePresentation.Slides(1).Shapes.AddShape _
(msoShapeRectangle, .BoundLeft, _
.BoundTop, .BoundWidth, .BoundHeight)
.Line.Visible = msoFalse
End With
End With
End With
End With