close

I am wanting to be able to press the enter key from any cell and have it go
down one row and over to column quot;Aquot; . If it matters the document is
protected.
This is with Excel 2003.

Thanks

You could use an event macro:

Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Me.Cells(Target.Row 1, quot;Aquot;).Select
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
www.mvps.org/dmcritchie/excel/getstarted.htm

If you want to read more about these kinds of events:

Chip Pearson's site:
www.cpearson.com/excel/events.htm

David McRitchie's site:
www.mvps.org/dmcritchie/excel/event.htm

J wrote:
gt;
gt; I am wanting to be able to press the enter key from any cell and have it go
gt; down one row and over to column quot;Aquot; . If it matters the document is
gt; protected.
gt; This is with Excel 2003.
gt;
gt; Thanks

--

Dave Peterson

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 software 的頭像
    software

    software

    software 發表在 痞客邦 留言(0) 人氣()