Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Użytkownik "margaret1115" napisał w wiadomości ... I need to insert a blank row after every row containing data (to facilitate reading and adding survey data by hand) in an Excel spreadsheet. Is there any way to do so automatically by selecting the data then doing some menu option or keystroke? I can add a blank row with a macro but that is only a bit less laborious than having to add each blank row by hand. Thank you for your help. Margaret suppose your data is placed in column A i understod you want to add each row of data empty row if so use following sub: Sub insert() m = Range("a1").CurrentRegion.Rows.Count For i = m To 2 Step -1 Cells(i, 1).EntireRow.insert Next End Sub is that what you wanted? mcg |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
insert a blank row after data changes in a column | Excel Discussion (Misc queries) | |||
Help PLEASE! Not sure what answer is: Match? Index? Other? | Excel Worksheet Functions | |||
How to sort/update large excel db | Excel Discussion (Misc queries) | |||
Fetching External Data from Excel | Excel Discussion (Misc queries) |