Insert Row question

  • Thread starter Thread starter Stuart
  • Start date Start date
Hi
try something like
....
row_height=5
ActiveCell.Resize(row_height,1).EntireRow.insert
 
Stuart,

Use a With Statement to insert where you want with the row height yo
want as seen below

Regards

Seamus


Sub Insert_Row()
With Rows("6:6")
.Insert Shift:=xlDown
.RowHeight = 25.5
End With
End Su
 

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