Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If it's only for reading, maybe you could just double the rowheight of each row.
If the rows are all the same height, you can select all the rows (a few ctrl-a keystrokes), then just change the rowheight: Format|row|height (and double the value there) margaret1115 wrote: 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 -- Dave Peterson |
#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 |
Reply |
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) |