After Insert

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

Is there a way to tell when a line insert occured. I do not see an
AfterInsert routine.

Thank you,

Steven.
 
You could probably find it with a worksheet_change event and look for

Target.Columns.Count = ME.Columns.Count
 
I used the following within the Worksheet_Change event

If Target.Address = Target.EntireRow.Address then

'Row has been inserted or deleted


End if
 
Those are nice. Thank you. What I want to do is specifically catch the
insert. Is there a way do that?

Thanks again.
 

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

Back
Top