Dynamically resize row height

troygeri

New Member
Joined
Jun 5, 2011
Messages
18
I have a vlookup formula that returns variable text to a cell, some one line others up to 10 lines. I want to know how I can get the row height to automatically / dynamically adjust to accomodate the amount of text returned by the formula

I know I can put autofit on the cell however when only one line of text is returned it leaves 9 linbes of white space which is undesirable

Thank you

Troy Geri
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
You could use sheet calculate event as follows :

Code:
Private Sub Worksheet_Calculate()
    Range("d1").WrapText = True
    Range("d1").EntireRow.AutoFit
End Sub
where F1 is the cell with the VLookUp function. Change the cell as needed.
 
Upvote 0

Forum statistics

Threads
1,215,584
Messages
6,125,677
Members
449,248
Latest member
wayneho98

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top