AutoCorrect.CorrectTableCells Property (Word)
True to automatically capitalize the first letter of table cells. Read/write Boolean.
Syntax
expression .CorrectTableCells
expression An expression that returns an AutoCorrect object.
Example
This example disables automatic capitalization of the first letter typed within table cells.
Sub AutoCorrectFirstLetterOfTableCells()
Application.AutoCorrect.CorrectTableCells = False
End Sub