Hi @Maxine Nietz ,
hope thats helps:
Sub ChangeTableCellHeight()
Dim doc As Document
Dim tbl As Table
Dim cell As Cell
' Reference the active document
Set doc = ActiveDocument
' Reference the specific table (1 for the first table in the document)
Set tbl = doc.Tables(1)
' Reference the specific cell (change row and column as needed)
Set cell = tbl.Cell(Row:=2, Column:=3)
' Change the cell height
cell.Height = InchesToPoints(0.5) ' Change to desired height in inches
' Optional: Set height rule
cell.HeightRule = wdRowHeightExactly ' Other options: wdRowHeightAtLeast or wdRowHeightAuto
End Sub
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".