for Part 2 of your question involving navigation within a worksheet,
:
Also, after I enter data for the last column of an entry, how can I make
the current cell (the one that being modified or selected, am I using the
right term?) jump to the first column of the next row
with just hitting the "->" key?
You would unlock the cells in columns A:F for instance, leaving
G:IV cells locked under Tools --> cells -->Protection. then turn
on sheet protection Tools --> protection --> sheet
But you would have to use the TAB key not the ArrowRt key.
Another way
would be to use an Event macro. Please read the topic
not just the code. Install by RClick on worksheet tab, insert code.
Worksheet_SelectionChange to prevent entry past a column (#ws_sc
Worksheet Events and Workbook Events
http://www.mvps.org/dmcritchie/excel/event.htm#ws_sc
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.column < 4 then exit sub
On error resume next 'MUST reenable events...
Application.EnableEvents = False
ActiveCell.Offset(1, 1 - Target.Column).Select
Application.EnableEvents = True
End Sub
Note use of any macro prevents you from using UNDO (ctrl+z),
so you might take another look at worksheet protection and use
of the TAB key.
Sometimes putting two questions in the same posting helps, when
both questions are related and can be quickly answered. Frequently
it works against you delaying your answers. This one worked against you.
And it works against those who simply search newsgroups for answers
because the subject has nothing to do with this part of your question..
In fact the first part of your question doesn't really fit the subject either.
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
(see above)