Row Heights

  • Thread starter Thread starter trickdos
  • Start date Start date
T

trickdos

Hey guys, thanks again for all your help...

I am making a workbook and the row heights have to be the same on al
sheets for printing purposes. All sheets are the same format, and i
there a way to make all the row heights the same, without doing i
manually. Thanks.

Bret
 
Hi trickdos

You can use this macro

Sub test()
Dim sh As Worksheet
For Each sh In ThisWorkbook.Worksheets
sh.Cells.RowHeight = 10
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top