Create a button to insert a new row.

S

Sharon

I know Excel can do it; I just don't know how. In addition, once the new row
is inserted, I need the formulas to carry into it.

Any help is greatly appreciated!
 
R

ryguy7272

I can think of many possibilities, but I'm sure you are thinking of something
very specific. Please give more information.
 
B

Bob Umlas

Assuming you want the inserted row at the cursor location:
Sub InsertIt()
On Error Resume Next
Rows(Activecell.Row).Insert
Rows(Activecell.Row-1).Resize(2).FillDown
Rows(Activecell.Row).specialcells(xlcelltypeconstants).clearcontents
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top