Move cell info and info in range of cells on new entry

A

abc

I would like to enter info into exsiting cell and when I hit enter the
existing info would move down one row.

B C D E
5 Enter new info her existing info moves down
6
7
Thanks for the help.
 
D

Don Guillett

You could use a worksheet_change event macro within your sheet module to do
this when you enter a value into the last column of the existing row.
 
D

Don Guillett

Right click sheet tab>view code>insert this.
Now when you enter something in col e, a row will be inserted.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column <> 5 Then Exit Sub
Rows(Target.Row).Insert
End Sub
 
A

abc

Just got a chance to try it now. And it works how you describe but....

Insted of the target col being e what do I change to make it col a?
 

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