#1   Report Post  
Arun
 
Posts: n/a
Default insert rows

a workshhet with 30 column 100 rows with data. I would like to insert a
blank row after each row automatically. please help
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default


Application.Screenupdating = False
For i = 100 to 1 Step -1
cells(i,"A").entirerow.insert
Next i
Application.Screenupdating = True
--

HTH

RP
(remove nothere from the email address if mailing direct)


"Arun" wrote in message
...
a workshhet with 30 column 100 rows with data. I would like to insert a
blank row after each row automatically. please help



  #3   Report Post  
R.VENKATARAMAN
 
Posts: n/a
Default

suppose your data is in column A from A1 down
at the cell below the last cell type the string(this is most important
otherwise the programme will go on and on)

stop

now use this vba programme

Public Sub test()
Range("a1").Activate
line1:
ActiveCell.Offset(1, 0).Activate
If ActiveCell = "stop" Then Exit Sub
ActiveCell.EntireRow.Insert
ActiveCell.Offset(1, 0).Activate
GoTo line1
End Sub

do u get what you want.



Arun wrote in message
...
a workshhet with 30 column 100 rows with data. I would like to insert a
blank row after each row automatically. please help



  #4   Report Post  
Gord Dibben
 
Posts: n/a
Default

Arun

There have been posted a couple of VBA macros to do what you want.

I'm just wondering why you need the blank rows.

If for appearance only, you could just select the 100 rows and double the
height.

If blank rows are to be used for data input, ignore this suggestion.

Gord Dibben Excel MVP

On Sat, 11 Dec 2004 04:37:02 -0800, "Arun"
wrote:

a workshhet with 30 column 100 rows with data. I would like to insert a
blank row after each row automatically. please help


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
Insert rows based on specific value bob Excel Worksheet Functions 6 February 29th 08 07:11 PM
Challenging Charting C TO Charts and Charting in Excel 0 January 17th 05 06:57 PM
Adding Rows to Master Sheet Excel Newbie New Users to Excel 1 December 23rd 04 10:56 PM
how do I insert multiple rows in excel after every row of data grantm5 Excel Discussion (Misc queries) 1 December 14th 04 08:09 PM
parse cell and insert rows? Gorrila Grod Excel Worksheet Functions 3 November 5th 04 08:19 AM


All times are GMT +1. The time now is 02:18 PM.

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

About Us

"It's about Microsoft Excel"