#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Data Entry Cells

Hello,
I have office 2004 for Mac and am trying to make it so that when you get to
the end of the row of data entry and hit enter the next active cell is the
first one that you started with.
IE: cells a1, b1, c1, d1, e1, f1... are data entry cells and what I would
like is when the last data point was entered into f1 and "enter" was hit,
excel would automatically return to a1.

Thanks,
Scott
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9,101
Default Data Entry Cells

You can use a worksheet change macro like the one below

Private Sub worksheet_Change(ByVal target As Range)

If target.Column = 6 Then
Cells(target.Row + 1, "A").Select
End If

End Sub


"Kindlysinful" wrote:

Hello,
I have office 2004 for Mac and am trying to make it so that when you get to
the end of the row of data entry and hit enter the next active cell is the
first one that you started with.
IE: cells a1, b1, c1, d1, e1, f1... are data entry cells and what I would
like is when the last data point was entered into f1 and "enter" was hit,
excel would automatically return to a1.

Thanks,
Scott

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 762
Default Data Entry Cells

Scott or Kindlysinful -

If you select the range first, e.g., A1:F5 for five rows of data, then after
you type in a cell, you can use the Tab key (instead of the Return key) to
move to the next cell in the selected range. For the A1:F5 example, when you
are in cell F1 and press the Tab key, the active cell becomes A2.

For Mac-specific questions (unlike this one), consider the very active
microsoft.public.mac.office.excel newsgroup.

- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel


"Kindlysinful" wrote in message
...
Hello,
I have office 2004 for Mac and am trying to make it so that when you get
to
the end of the row of data entry and hit enter the next active cell is the
first one that you started with.
IE: cells a1, b1, c1, d1, e1, f1... are data entry cells and what I would
like is when the last data point was entered into f1 and "enter" was hit,
excel would automatically return to a1.

Thanks,
Scott



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data Entry Online, Data Format, Data Conversion and Data EntryServices through Data Entry Outsourcing [email protected] Excel Discussion (Misc queries) 0 March 20th 08 12:45 PM
limiting data entry cells owenshelp Excel Discussion (Misc queries) 2 August 28th 07 01:14 PM
Cell Entry That Locks Selected Cells From Any Data Entry. ron Excel Worksheet Functions 5 February 16th 07 09:52 PM
Validate MsgBox Entry to Data in Cells David Excel Discussion (Misc queries) 13 December 21st 05 10:31 PM
data entry from two cells across worksheets sp-googling Excel Discussion (Misc queries) 7 March 30th 05 09:07 PM


All times are GMT +1. The time now is 05:28 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"