Excel Row Heights

I have a document with thousands of rows. 1-79 had rows with minimal height that essentially hid them from view. I was able to fix those rows by manually changing the height. However, now from row 79 -1001 I am missing rows and do not want to spend the time manually adjusting their heights. I  have tried ctrl +A and format row height. What other ways is there to fix this problem?

Thanks

August 27th, 2015 1:33pm

Execute the macro below.

Andreas.

Sub Test()
  ActiveSheet.UsedRange.EntireRow.RowHeight = 15
End Sub
or that

Sub Test2()
  ActiveSheet.UsedRange.EntireRow.AutoFit
End Sub


Free Windows Admin Tool Kit Click here and download it now
August 27th, 2015 1:56pm

Execute the macro below.

Andreas.

Sub Test()
  ActiveSheet.UsedRange.EntireRow.RowHeight = 15
End Sub
or that

Sub Test2()
  ActiveSheet.UsedRange.EntireRow.AutoFit
End Sub


August 27th, 2015 5:51pm

Execute the macro below.

Andreas.

Sub Test()
  ActiveSheet.UsedRange.EntireRow.RowHeight = 15
End Sub
or that

Sub Test2()
  ActiveSheet.UsedRange.EntireRow.AutoFit
End Sub


Free Windows Admin Tool Kit Click here and download it now
August 27th, 2015 5:51pm

Have you considered doing a Ctrl+A, Ctrl+C and then on a new sheet in cell A1, Ctrl+V?  
August 28th, 2015 4:50pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics