>It should be easy with a change event, but what does ... next cell in a
>series ... mean?
Pete,
You need to use the Change event code. Right-click the appropriate sheet tab
and choose View Code. This will take you to that sheet's object module in
the VBA editor. Paste in the following code:
Private Sub Worksheet_Change(ByVal Target As Range)
'''''''''''''''''''''''''''''
' Restrict actions to A1:A10)
'''''''''''''''''''''''''''''
Dim ISect As Range
Set ISect = Application.Intersect(Me.Range("A1:A10"), Target)
If ISect Is Nothing Then
Exit Sub
Else
If ISect.Cells.Count <> Target.Cells.Count Then
Exit Sub
End If
End If
Application.EnableEvents = False
Target.Cells(Target.Cells.Count)(2, 1).Select
Application.EnableEvents = True
End Sub
This code will select the cell below the paste operation after the paste. As
written, it will apply only to changes in the range A1:A10. Change that
range reference as appropriate.

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)
> Per Bob Phillips:
>>It should be easy with a change event, but what does ... next cell in a
[quoted text clipped - 5 lines]
>
> Or can it be any name and somehow associated with the cell via the UI?
(PeteCresswell) - 10 Dec 2006 19:47 GMT
Per Chip Pearson:
>You need to use the Change event code. Right-click the appropriate sheet tab
>and choose View Code. This will take you to that sheet's object module in
>the VBA editor. Paste in the following code:
>
>Private Sub Worksheet_Change(ByVal Target As Range)
> '''''''''''''''''''''''''''''
Thanks Chip.
The big revelation to Yours Truly was the concept of Worksheet_Change().

Signature
PeteCresswell