Macro to Insert Empty Row

sridhar0v

New Member
Joined
Sep 5, 2011
Messages
2
Hi All,
Could anyone please provide me a macro which has to scan a column in a Sheet and insert empty rows where the column cell Value in '1'.

Thanks,
Sri
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi, and welcome to the board.
Assuming:
1) your column of interest is column B
2) you want to add a row below each value of 1 found in the column
. . . then perhaps something like this?
Code:
Sub InsertRowBelowOnes()
Dim LstRw As Long, Rw As Long
Application.ScreenUpdating = False
LstRw = Cells(Rows.Count, "B").End(xlUp).Row
For Rw = LstRw To 1 Step -1
  If Cells(Rw, "B") = 1 Then Rows(Rw + 1).EntireRow.Insert
Next Rw
Application.ScreenUpdating = True
End Sub
Note:
If your column is not column B, simply replace both references to "B" with the column you want.
If you want the row(s) added above the values of 1 (instead of below them) then just remove the + 1 in the If Statement.

Hope it helps.
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,873
Members
452,949
Latest member
Dupuhini

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