View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Kesbutler Kesbutler is offline
external usenet poster
 
Posts: 30
Default Macro help. Insert row and copy formulas from row above

Is there a way to have it copy only the formulas? Also, the workbook will be
password protected.

"Joel" wrote:

to copy the last row and maintain your formulas it is best to copy the last
row and insert the copy before the last row. Thne clear the non-formula
cells from the last row. A little backwards, but it will work.


Lastrow = range("A" & rows.Count).end(xlup).Row
Rows(Lastrow).copy
Rows(Lastrow).Insert
Rows(Lastrow + 1).SpecialCells(xlCellTypeConstants).ClearContents



"Kesbutler" wrote:

I have a worksheet that I need to insert rows but copy only the formulas from
the row above. Any suggestions?