Thread: Inserting rows
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Francis Hookham Francis Hookham is offline
external usenet poster
 
Posts: 125
Default Inserting rows

Fantastic Michael - just what I wanted - many thanks,

Francis


"Michael" wrote in message
...
Doing this wil speed up the insertion because is not selecting:

Cells(ir + 2, 1).Rows("1:" & icount).EntireRow.Insert Shift:=xlDown


--
If this posting was helpful, please click on the Yes button.
Regards,

Michael Arch.




"Francis Hookham" wrote:

Varable iR is the row where I need to insert a row.
Given iCount is the numbers of rows to be inserted, how can this be
altered
to insert that number of rows?

Sheets("Pages").Rows(iR + 1).EntireRow.Insert

The following does it but is so cumbersome, having to select first:

Cells(iR+ 2, 1).Select
ActiveCell.Rows("1:" & iCount).EntireRow.Select
Selection.Insert Shift:=xlDown

Many thanks
Francis Hookham