Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How do I navigate to next row?

I have a spreadsheet with the columns going to AP and the rows going to 140. I need to change the value in some cells. I want to be able to tab (or arrow) over to the adjoining cell and when I get to the last cell in the row, I want to hit Enter to start in Column A of the next row.

I can't find an easy/quick way to get back to the first cell in the next row. If I press Tab, it adds another column which then I have to delete. If I hit enter, I go down one row in the same column. If I press Home, I then have to use my mouse to select the first cell or I bounce back to the last cell.

What am I missing here? I just want to navigate through the row and then begin in the first cell of the next row. But, I can't figure out how to do this!!

Also, is there any way to make it stop adding columns (when I press Tab)?

Does anyone know? Thanks.

mac mini, Mac OS X (10.6.6), 2 GHz Intel Core 2 Duo, 4 GB DDR3, 320 GB

Posted on Apr 3, 2011 5:41 PM

Reply
17 replies

Apr 3, 2011 5:48 PM in response to linda2009

Linda,

You made several posts today on topics that are closed to everyone but you, the originator, so you won't find many responses. Once you mark a question as Answered, apparently it's days are numbered and general access is restricted thereafter.

To move all the way across your sheet, I type fn-arrowkey on a MacBook. Not sure if you have a fn key but if not, play around and see if any combination of control key and arrow key will do it for you.

Jerry

Apr 3, 2011 6:45 PM in response to Jerrold Green1

I'm using a Mac Mini, the "fn" key by the home key doesn't add any additional function when I press it with any arrow keys. When I press command, option, or control plus an arrow key, I just get an audible sound and nothing happens. Except Option plus arrow adds a column.

Surely there must be a way to enter data into cells across the row and then start at the next row or even a new row. Pressing Enter just puts you at the end of the row with no easy way to get back to the beginning of the row. I have experimented for hours and can't find something - that's why I posted!

Does anyone know how to do this?? I would appreciate some help with This post. Thank You!!





--- Did I do something wrong? I wasn't expecting any responses to the posts, but they were all in my "unanswered" list and I know from searching myself, that sometimes I wish someone would post whether or not something helped them so I was trying to "tie off" the thread so to speak. If it's something that is not acceptable, I sincerely apologize. I was only trying to help a little. I will not do it again! ---

Apr 3, 2011 7:01 PM in response to linda2009

Okay, I've figured out a way to do what I want.

I've read and followed several suggestions by Yvan KOENIG, and many times he has said to read the manual. So, I read the manual and I found a clue, tried it and it works for me! Thanks, Yvan!

I un-checked the option in Inspector - "Return Key moves to next cell" Now when I hit enter, it wants to edit the cell (ok). But, when I hit tab at the end of the row, I am then moved to the first cell in the next row!

So I answered my own question and posted it here for any that might read this post and want/need the same information.

good day,
Linda

Apr 3, 2011 7:38 PM in response to linda2009

I don't think there is a built-in shortcut to take you to the first column. But an Applescript can do it. The one below returns you to column A. Hit Enter to complete whatever you were doing in the cell you are working in then use the script to take you to column A. You can use System Preferences/Keyboard to create a keyboard shortcut for it.

Using Automator, create a Service
It receives "no input" in "Numbers"
Use the Run Applescript action (found in Utilities)
Delete the default code
Paste in the code from below
Save it with a name like "Goto Column A"
It will show up in Numbers' Service Menu
Assign a keyboard shortcut to it.



on run

set {rname, tName, sName, dName} to my getSelection()
if rname is not missing value then
set twoNames to my decoupe(rname, ":")

set {rowNum1, colNum1} to my decipher(item 1 of twoNames, dName, sName, tName)

tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
set selection range to cell 1 of row rowNum1
end tell
end if

end run
--=====
on getSelection()
local mySelectedRanges, sheetRanges, thisRange, _, myRange, myTable, mySheet, myDoc, mySelection
tell application "Numbers" to tell document 1
set mySelectedRanges to selection range of every table of every sheet
repeat with sheetRanges in mySelectedRanges
repeat with thisRange in sheetRanges
if contents of thisRange is not missing value then
try
thisRange as text
on error errMsg number errNum
set {_, myRange, _, myTable, _, mySheet, _, myDoc} to my decoupe(errMsg, quote)
return {myRange, myTable, mySheet, myDoc}
end try
end if -- contents…
end repeat -- thisRange
end repeat -- sheetRanges
end tell -- table of sheet of document of application
return {missing value, missing value, missing value, missing value}
end getSelection
--=====
on decipher(n, d, s, t)
tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
end decipher
--=====
on decoupe(t, d)
local l
set AppleScript's text item delimiters to d
set l to text items of t
set AppleScript's text item delimiters to ""
return l
end decoupe


Credit to Yvan for the script. If I recall the history, I took a piece of his code and pared it down for this specific task. Or maybe it is all his, I don't recall.

Apr 3, 2011 9:11 PM in response to linda2009

linda2009 wrote:
--- Did I do something wrong? I wasn't expecting any responses to the posts, but they were all in my "unanswered" list and I know from searching myself, that sometimes I wish someone would post whether or not something helped them so I was trying to "tie off" the thread so to speak. If it's something that is not acceptable, I sincerely apologize. I was only trying to help a little. I will not do it again! ---

No, nothing wrong. It sounded to me as though you were still looking for answers and I was going to try to help, but couldn't and I wanted you to know why.

Regarding the navigation, you specified that you were editing existing table content, not entering new content. When entering new, it will work exactly as you wish if you do have Return Key Moves to Next Cell selected, as long as you stay in the same pattern of entering, tabbing, and hitting return at the end of the column range. When you are editing, Numbers has no idea where you might want to go next, in general, so it waits for a pattern to develop.

Jerry

Message was edited by: Jerrold Green1

Apr 3, 2011 9:26 PM in response to Jerrold Green1

I was looking for the navigation primarily for editing an existing table. I couldn't figure out why the Enter key was not behaving as I expected it to!

After experimenting with a brand new blank table (new file), I see that Numbers does try to figure out your pattern. As I was "hopscotching" across my table filling in various cells, I had no pattern. So I guess that's why it didn't behave as I expected it to, which was when I came to the end of the row, hit Enter, end up in first cell of next row. As I had not edited the first cell of the previous row, Numbers didn't take me there.

So I guess the behavior is slightly different for editing existing table versus creating a new table, entering data and new rows as you go.

Thanks for additional information. I am learning more about Numbers all the time.
🙂
Linda

Apr 3, 2011 10:02 PM in response to linda2009

linda2009 wrote:
So I guess the behavior is slightly different for editing existing table versus creating a new table, entering data and new rows as you go.


Hi Linda,

Numbers's behaviour in this regard is the same when editing an existing table as when creating a new one. The culprit here isn't 'and existing table,' but '"hopscotching" across my table (with) no pattern.' The behaviour recognizes and copies only one behaviour pattern: Tab between cells in a row, return at the end of the row. The return will bring you back to the beginning of the 'row'; ie. the cell directly below the one you started at. The memorization is automatic, and any break in the pattern will reset the memory and start over at the current cell.

Regards,
Barry

Apr 3, 2011 10:38 PM in response to Barry

I don't find that behavior with the Enter key. I can start at the first cell in a row and tab all the way to the end. If I continue to hit tab, Numbers inserts new columns each time I press Tab. If I press Enter, Numbers puts me in the cell below the last cell in the row. This is with having "Return key moves to next cell" checked.

When I said, "hopscotching" I meant that I would Tab straight across, but only edit some of the cells in the row.

It picks up the pattern of edited cells. If you Tab from one cell to another, it does not pick up that pattern, only if you edit the cell in some way. As you say, a pattern, not existing or new differences.

However, if you UN-check "Return key moves to next cell" when you come to the cell at the end of the row and press Tab, Numbers takes you to the first cell of the next row. It doesn't care if you edited individual cells or not.

The Enter key will never return you to the first cell of a row - unless you edited that cell. With the "Return key moves to next cell" checked, Numbers will return you to the cell under the first cell that you edited (not always the first cell of the row).

This is getting too long and complicated! 🙂 I can only say that I found a way to make Numbers do what works for me!

Thanks for all the comments and suggestions!

Linda

Apr 4, 2011 12:24 AM in response to linda2009

linda2009 wrote:
I don't find that behavior with the Enter key.

Do you mean the "enter" key that is in the number pad cluster, as opposed to the "return" key (which also carries an 'enter' label on current machines)? I was using the "return" key (above the shift key on the right).

When I said, "hopscotching" I meant that I would Tab straight across, but only edit some of the cells in the row.

Exactly. My quick test involved an existing table with 7 columns. Columns A, B and G were empty; C, D, E and F contained existing data.

It picks up the pattern of edited cells. If you Tab from one cell to another, it does not pick up that pattern, only if you edit the cell in some way. As you say, a pattern, not existing or new differences.

More precisely, it remembers the first column that you edited, and holds the memory as long as you navigate using the tab key to move right and the return key to move down (and back to a cell below the first one you edited).

In one test, I started in A4 and used the following keystrokes (commas and spaces are separators, and were not included in the key stroke series):
1, tab, tab, tab, tab, tab, tab, return
tab, 2, tab, tab, tab, tab, tab, return
1, tab, tab, tab, tab, tab, tab, return

Then deleted the ones (both in column A) and the 2 (in B5) and repeated the test with these keystrokes:
1, tab, tab, tab, tab, return
tab, 2, return
tab, tab, tab, return
1, tab, tab, tab, tab, tab, tab, return

Each return (both tests) brought the selection back to column A. The last one added a row (8) to the table and left A8 as the selected cell. I also tried adding a tab to the first line of keystrokes. As expected, this added a column (H) to the table, and the return that followed brought the selection back to A5 (as before).

However, if you UN-check "Return key moves to next cell" when you come to the cell at the end of the row and press Tab, Numbers takes you to the first cell of the next row. It doesn't care if you edited individual cells or not.


Interesting, and could be useful. I don't recall ever having unchecked that box.

The Enter key will never return you to the first cell of a row - unless you edited that cell. With the "Return key moves to next cell" checked, Numbers will return you to the cell under the first cell that you edited (not always the first cell of the row).

Even with "Return key moves to next cell" checked and after you've edited the first cell in a row, the "enter" key won't return you to the cell under the first edited cell. The "return" key will. The "enter" key won't.

This is getting too long and complicated! 🙂 I can only say that I found a way to make Numbers do what works for me!

...and that's what really counts.

Regards,
Barry

Apr 4, 2011 2:16 AM in response to Jerrold Green1

Jerrold Green1 wrote:
Badunit wrote:
I don't think there is a built-in shortcut to take you to the first column.

Yvan,

On your MBP, try fn-LeftArrow. On my MBP it takes me to the left-most body column.


Hi Jerry

I never owned a MBP.
I searched on my full keyboard (with a numpad) if some key or key combo do what you described and I didn't found one. I guess that I must continue to search because I never saw a key combo available on "small" keyboards and missing on "large" ones.

left arrow -> select the cell on the left (if the cell is selected but not its contents)
shift + tab -> select the cell on the left
cmd + left arrow -> beep
option + left arrow -> insert a new column
shift + left arrow -> expand the selection to the left
ctrl + left arrow -> beep
fn + left arrow -> scroll one page left
option + page up -> scroll one page left (easier than the preceeding one)
fn + right arrow -> scroll one page right
option + page down -> scroll one page right (easier than the preceeding one)
cmd + fn + left arrow -> *_deselect all_*
cmd + fn + right arrow -> *_deselect all_*

Yvan KOENIG (VALLAURIS, France) lundi 4 avril 2011 11:16:32

Apr 4, 2011 7:27 AM in response to Barry

Barry,

Thank you for your very helpful post. I did not even think about differences between the Return key and the Enter key! I was assuming they behaved the same - were interchangeable basically. I did a few simple tests on a Numbers spreadsheet and they both seem to behave the same. And, another quick test, starting in a cell near the middle of the row (with the "Return key...." unchecked) pressing Tab takes me the the beginning (1st cell) of the next row.

Ivan, thank you for the quick table of the keystrokes. I need to find a complete table with all of Mac and iWorks keystrokes! 🙂 -- I'm going to do an internet search for that today!

Jerry, thanks for your posts and help! and, Badunit!

All of you - thank you for your time and help; it is appreciated. I am so thankful for these forums, as well. Good day!

Linda

Apr 4, 2011 7:42 AM in response to linda2009

linda2009 wrote:


Ivan, thank you for the quick table of the keystrokes. I need to find a complete table with all of Mac and iWorks keystrokes! 🙂 -- I'm going to do an internet search for that today!


It's not Ivan but Yvan

You have a table of shortcuts available thru the Helmp menu.

User uploaded file

It's not complete.
For instance, those able to unselect aren't described.

Yvan KOENIG (VALLAURIS, France) lundi 4 avril 2011 16:41:06

How do I navigate to next row?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.