Excel will not show all text entered in a Cell merged from 9 rows

P

Pat

I have tried to autofit and format cell, but nothing works. I have to
manually drag the cell border to make it longer.
 
D

Dave Peterson

This portion of Jim's code does some checking:

If ActiveCell.MergeCells Then
With ActiveCell.MergeArea
If .Rows.Count = 1 And .WrapText = True Then

Is your activecell part of a merged area?
Is that mergearea a single row?
Do you have wraptext turned on?
 
Top