insert row below

cmefly

Well-known Member
Joined
May 13, 2003
Messages
683
hi,

usually when i insert a row, the row is inserted a row above the one i hi-lite.
is there anyway to have it insert a row beneath the one i hi-lite? :confused:
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Just go to the next line below it! I don't think you can reset the Excel default, if that is what you mean.

If you are working with macros, .Offset(1,0) will take you down one more line.
 
Upvote 0
Unless you want to write a small macro to do it, just insert the row, and then use the Format copy button to copy the format of the row you want.

If you want to do this in one step instead of 2 or 3, you can write a small macro to do it.
 
Upvote 0
I'm not too good with macros but i'm in the process of learning....any chance you might be able to help me out here.....?
 
Upvote 0
If you place your cursor on the row you want to insert below, this will do that and copy the format of that row (like you asked).

Code:
Sub InsertRowBelow()

    Application.ScreenUpdating = False
    
    ActiveCell.Offset(1, 0).EntireRow.Insert
    ActiveCell.EntireRow.Copy
    ActiveCell.Offset(1, 0).Select
    Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False
    Application.CutCopyMode = False

    Application.ScreenUpdating = True

End Sub
 
Upvote 0
I know that this question is very old, but if someone needs answer, this is how I solve it.
My sheet was filtered and I need to insert row bellow in the middle of table. I did it by copying specific row, right click on that same row, insert paste row. This inserted the same row I copied, which I was needed, but you can clear contents if you need blank row.
 
Upvote 0

Forum statistics

Threads
1,216,326
Messages
6,130,057
Members
449,555
Latest member
maXam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top