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
- Nov 18 Sat 2006 20:10
Make enter key return to first column
close
全站熱搜
留言列表
發表留言