How to change the row height based on cell value in Excel?

To change the row height in a worksheet, most of us may apply the Row Height feature to set the height of the selected row. However if you have a list of number, and now, you want to set the row height based on the cell values as following screenshot shown, how could you deal with this task in Excel?
Change the row height based on cell value with VBA code
There is no direct way for you to change multiple row heights based on cell value at once, but, with the following VBA code, it can help you to finish this job as quickly as possible.
1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
VBA code: Change the row height based on cell value:
Sub rowheight()
'Updateby Extendoffice
Dim hgt As Variant
Dim WorkRng As Range
xTxt = ActiveWindow.RangeSelection.Address
Set WorkRng = Application.InputBox("please select the data range:", "Kutools for Excel", xTxt, , , , , 8)
For Each H In WorkRng
If H.Value > 15 Then
hgt = H.Value
H.EntireRow.Select
Selection.rowheight = hgt
End If
Next H
End Sub
3. Then press F5 key to run this code, and a prompt box is popped out to remind you select the cells that you want to set the row height by the cell values, see screenshot:
4. And then click OK button, the row height has been changed by the cell value as follows:
Note: In above VBA code, If H.Value > 15 Then indicates that if the cell value greater than 15, the row height will be changed, if the cell value less than 15, the row height will be stayed the default height. You can change it as you need.
Best Office Productivity Tools
Supports Office/Excel 2007-2021 and 365 | Available in 44 Languages | Easy to Uninstall Completely
Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need Is Just A Click Away...
Supercharge Your Excel Skills: Experience Efficiency Like Never Before with Kutools for Excel (Full-Featured 30-Day Free Trial)
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day! (Full-Featured 30-Day Free Trial)
