Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I am trying to enter a blank row inbetween every row that is in a worksheet
and I can't figure out a way to do it. I am going to be merging this information and when I merge it without blank rows, it does not pull all of the rows. Please help with any information you may have. |
#2
![]() |
|||
|
|||
![]()
Hi Acesmith
You can use a macro Sub test() Application.ScreenUpdating = False Dim numRows As Integer Dim R As Long Dim rng As Range numRows = 1 Set rng = ActiveSheet.UsedRange For R = rng.Rows.Count To 1 Step -1 rng.Rows(R + 1).Resize(numRows).EntireRow.insert Next R Application.ScreenUpdating = True End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Acesmith" wrote in message ... I am trying to enter a blank row inbetween every row that is in a worksheet and I can't figure out a way to do it. I am going to be merging this information and when I merge it without blank rows, it does not pull all of the rows. Please help with any information you may have. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Skip blank cells in diagrams | Charts and Charting in Excel | |||
Multiple rows of data on a single axis (charting) | Charts and Charting in Excel | |||
Why cannot I unhide the hidden rows ? | Excel Discussion (Misc queries) | |||
How do I remove blank rows in Excel? | Excel Discussion (Misc queries) | |||
Filtering rows with tracked changes | Excel Discussion (Misc queries) |