Formulas don't change format and rowheight is a format.
You could use a worksheet event that resets the rowheights whenever that
worksheet recalculates.
If you want to try this, rightclick on the worksheet tab, select view code and
paste this into the code window.
Option Explicit
Private Sub Worksheet_Calculate()
Me.Rows.AutoFit
End Sub
Then back to excel and test it out.
joeeng wrote:
Why doesn't Excel 2002 autofit row height for text input from a linked cell?
When the linked cell contents exceed the currently viewable contents of the
recipient cell the row height is not adjusted. Is there a way to make the
autofit work in these circumstances?
--
Dave Peterson
|