insert row at end of list

T

Tasso

Hi Guys,
I'm trying to find a simple macro to insert a blank row at the end of an
inventory list with the same format as the row above. this is a list to allow
users to enter hardware inventory. I have 10 rows formatted with cell
borders. I would like to allow users to insert additional rows if they have
more than 10 items of hardware to enter. the worksheet is protected. there is
also a count formula at the bottom of the list to confirm the number of
hardware entered in a previous sheet matches the number of rows populated for
hardware.
any helps would be much appreciated.
thanks
tasso
 
J

Joel

The best way is to insert a new just below the last row. This will preserve
the formating and any formulas you are using

LastRow = Range("A" & Rows.Count).End(xlUp).Row
Rows(LastRow).Copy
Rows(LastRow).Insert
Rows(LastRow + 1).ClearContents
 

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