![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
excel spreadsheet, without having to go row by row?
|
| Ads |
|
#2
|
|||
|
|||
|
You could do it easily with a macro.
Why would you do this? If for appearance and better readability, just select all rows and double the height. Sub InsertRows() Application.ScreenUpdating = False Dim numRows As Integer Dim r As Long numRows = 1 For r = 2000 To 1 Step -1 ActiveSheet.Rows(r + 1).Resize(numRows).EntireRow.Insert Next r Application.ScreenUpdating = True End Sub Change the 2000 to whatever range you want. Gord Dibben MS Excel MVP On Thu, 29 Jun 2006 15:34:02 -0700, Laura > wrote: >excel spreadsheet, without having to go row by row? |
|
#3
|
|||
|
|||
|
"Laura" wrote: > excel spreadsheet, without having to go row by row? One way would be to: 1) insert a new column next to your data 2) number the columns 1,3,5,7,etc. (use 'Fill' and then 'Series') 3) number some blank lines 2,4,6,8,etc. (use 'Fill' and then 'Series') 4) sort your data by the new column. 5) delete the new column. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Adding a blank in Data Validation List? | Pheasant Plucker® | Excel Discussion (Misc queries) | 10 | March 20th 06 03:06 PM |
| Counting blank cells until value is reached | Dan | Excel Worksheet Functions | 9 | March 1st 06 12:56 PM |
| CONCATENATE problem with blank cells | roger_home | Excel Discussion (Misc queries) | 1 | August 17th 05 09:18 PM |
| Replace null string with blank cell | gjcase | Excel Discussion (Misc queries) | 2 | August 9th 05 02:13 PM |
| Blank Cells in Pivot Tables | Greg | Excel Discussion (Misc queries) | 1 | March 16th 05 09:23 PM |