View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Microsoft Excel - Automatically Extending Formulas

How about if you put your formulas in row 1hide the rowdouble click

right click sheet tabview codeinsert this. Now, when you double click
anywhere on the sheet row will be inserted before the last row and row 1
will be copied.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
lr = Cells(Rows.Count, "a").End(xlUp).Row
Rows(lr).Insert
Rows(1).Copy Rows(lr)
End Sub

--
Don Guillett
SalesAid Software

"Cadillac Williams" <Cadillac
wrote in
message ...
Hi,

I have a large worksheet that has a number of fairly complex formulas that
are repeated in each row with only the row number reference changing. When
I
insert a new row in between two existing rows that contain formulas I
would
like excel to automatically insert the formulas I have in the row above it
into my new row. Excel already does this with my formatting, I want to
know
how to do it with my formulas as well.