Bryce, thanks for the suggestion. Unfortunately, it didn't work. The code ran fine but the result was not as hoped.
It should be noted from the resulting file from my process, that I cannot even dbl-click the row divider and get Excel to autofit the row. Here's an image of what I have. The rows indicated by the red dots should be adjusted by the code, but it's not happening.

Code:
Dim curRow As Integer
curRow = 58 + comCount
'Select and merge cells for comment, write comment & resize row height
With Worksheets("Summary").Range(Cells(curRow, commentCol), Cells(curRow, mergeCol))
.MergeCells = True
.Value = txtComment.Value
.WrapText = True
.VerticalAlignment = True
.Rows(curRow).AutoFit
End With
Any other thoughts?