Wordwrap row sizing

ge0rge

Active Member
Joined
Feb 24, 2009
Messages
262
I have a column 'E' which all cells are set to wordwrap. It works as planned. Is there a way however so that once this happens that the smallest row height allowed is 16, while still maintaining proper word wrapping in cells needing it?

I tried starting with all rows set to 16 before word wrapping column 'E' but then it moved those not needing it to a height of 11.25.

Thanks.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Hi there,

How about something like this:

Code:
Sub rowminheight()
    finalrow = Cells(Rows.Count, 5).End(xlUp).Row
    startrow = 2
    Set rngRows = Cells(startrow, 5).Resize(finalrow, 1)
    Dim rw As Object
    For Each rw In rngRows.Rows
        If rw.RowHeight < 16.5 Then
            rw.RowHeight = 16.5
        End If
    Next rw
    Set rngRows = Nothing
End Sub
 
Upvote 0
Very nicely done. Thanks for that. I am surprised its not already a parameter you can preset in Excel. Thanks!
 
Upvote 0

Forum statistics

Threads
1,224,517
Messages
6,179,237
Members
452,898
Latest member
Capolavoro009

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