looping through sheets & amend rowheight

walidm

New Member
Joined
Feb 24, 2011
Messages
1
Hi all,
How can I achieve this:
I would like to loop through all my sheets & set the row height to 20 on rows starting from row 6 to the last non blank row.
Thanks for your help.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi. Try this

Code:
Sub rowht()
Dim ws As Worksheet, LR As Long
For Each ws In ActiveWorkbook.Worksheets
    With ws
        LR = .Range("A" & Rows.Count).End(xlUp).Row
        .Rows("6:" & LR).rowheight = 20
    End With
Next ws
End Sub
 
Upvote 0
You could use a macro

Code:
Sub globalChangeCellHeight()
    For Each ws In ActiveWorkbook.Worksheets
        lr = ws.Cells.Find(What:="?", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
        ws.Range("A6:A" & lr).EntireRow.RowHeight = 20
    Next ws
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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