Specified rowheigt in a table

  • Thread starter Thread starter Mia
  • Start date Start date
M

Mia

Hi,

How do you code a specified rowheight?

I have tryed following:



ActiveSheet.RowHeight = 15

Thank you in advance!
 
ActiveSheet.Rows("32:32").RowHeight = 15

32 is just an example for row number(s) or

ActiveSheet.Rows.RowHeight = 15

for all rows of the active sheet.

--
Regards!
Stefi



„Mia†ezt írta:
 
Back
Top