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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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,224,524
Messages
6,179,310
Members
452,906
Latest member
phanmemchatdakenhupviral

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