Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to insert 2 blank lines between each line of data of a spreadsheet
that is approximately 5600 lines long. Any suggestions? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
in a spare column number the lines. Then Copy the contents of those
cells into the cells below in that column twice. Now sort your spreadsheet on that column Karen Rosenberger wrote: I need to insert 2 blank lines between each line of data of a spreadsheet that is approximately 5600 lines long. Any suggestions? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your description is at odds with your subject line so I'll assume
description is correct. Sub InsertRows() Application.ScreenUpdating = False Dim NumRows As Integer Dim lrow As Long Dim r As Long lrow = Cells(Rows.Count, 1).End(xlUp).Row NumRows = 2 For r = lrow To 1 Step -1 ActiveSheet.Rows(r + 1).Resize(NumRows).EntireRow.Insert Next r Application.ScreenUpdating = True End Sub Gord Dibben MS Excel MVP On Thu, 24 Sep 2009 11:45:01 -0700, Karen Rosenberger <Karen wrote: I need to insert 2 blank lines between each line of data of a spreadsheet that is approximately 5600 lines long. Any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert a dotted line to a solid line in a line graph | Charts and Charting in Excel | |||
To add extra line/lines to single cell in Excel spreadsheet | New Users to Excel | |||
How do i get lines on a line graph? | Charts and Charting in Excel | |||
Different lines in a spreadsheet on the same line in graph? | Charts and Charting in Excel | |||
10 000 Line, every 2 Lines need a border and a open line inbet. e. | Excel Discussion (Misc queries) |