#1   Report Post  
Acesmith
 
Posts: n/a
Default Blank Rows

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   Report Post  
Ron de Bruin
 
Posts: n/a
Default

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Skip blank cells in diagrams hlp Charts and Charting in Excel 9 February 24th 06 02:32 PM
Multiple rows of data on a single axis (charting) ramseysgirl Charts and Charting in Excel 8 December 29th 04 06:00 PM
Why cannot I unhide the hidden rows ? Jim Edwards Excel Discussion (Misc queries) 2 December 4th 04 04:38 PM
How do I remove blank rows in Excel? m28leics Excel Discussion (Misc queries) 2 November 29th 04 11:56 PM
Filtering rows with tracked changes Kiwi Mike Excel Discussion (Misc queries) 0 November 27th 04 11:50 PM


All times are GMT +1. The time now is 11:34 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"