Add rows to top of list instead of bottom

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a default way to add rows to the top of the list instead of the
bottom, also without the shading of cell height from the header row.

Many thanks in advance.
 
I assume you mean with a macro. If you want to insert more rows, modify the
code. Just do this:

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 11/16/2007
'

'
Rows("2:2").Select
Selection.Insert Shift:=xlDown
Rows("3:3").Select
Selection.Copy
Rows("2:2").Select
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
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