View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Inserting rows and saving formulas

Hi
have a look at
http://www.mvps.org/dmcritchie/excel/insrtrow.htm

--
Regards
Frank Kabel
Frankfurt, Germany


Shawna wrote:
Hi,

I am using the code below to INSERT rows in an invoice sheet, but it
doesn't copy the formulas. Is there a way to do insert a row and
copy the formulas, too? Not the values, just the formulas.

In the code snippet "intRowCount" is the current row number - a count
of the line items.

Range("A" & intRowCount).EntireRow.Select
Selection.EntireRow.Insert shift:=xlShiftDown
Range("A" & intRowCount).Select

Thank you,

Shawna Brooks