Insert Row Event

M

miroslj

I need to catch when the new Rows are inserted or existing rows are Deleted
into the Sheet1.
And When this happed to insert the new Rows in Sheet2
at the same position (with the same row number).

But all that I find is event Worksheet_Change,
and I can not make difference using this event if
the new Rows are inserted or existing rows are Deleted
OR just Copy(rows) command.
 
J

Joel

The only way you can do it is to compare the number of rows og data on each
sheet to determine when they don't match. You also need some column that has
unique values in each row (line an ID number) so you can determine where the
new row was added or deleted.
 
A

Atishoo

You could insert a command button or button on custom toolbar that would
trigger a sub to insert a column into both worksheets at the same time.
 

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