Closed Thread
Results 1 to 9 of 9

Tab Down?

  1. #1
    SteveK
    Guest

    Tab Down?

    Is there a way to change the behavior of the Tab key so that rather moving
    to the next cell to the right of the current one, it instead moves down to
    the cell below the current one? I find that I want to Tab down more often
    than Tab right and the left hand is usually better situated to hit the Tab
    key than it is to move across the keyboard to find the Down arrow.

    SteveK



  2. #2
    Bob Phillips
    Guest

    Re: Tab Down?

    Steve,

    Goto menu Tools>Options>Edit, select the Move selection after Enter, and
    pick your direction.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "SteveK" <sk-reeemovethis@dolby-reeemovethis.com> wrote in message
    news:OzliIxdSFHA.3560@TK2MSFTNGP14.phx.gbl...
    > Is there a way to change the behavior of the Tab key so that rather moving
    > to the next cell to the right of the current one, it instead moves down to
    > the cell below the current one? I find that I want to Tab down more often
    > than Tab right and the left hand is usually better situated to hit the Tab
    > key than it is to move across the keyboard to find the Down arrow.
    >
    > SteveK
    >
    >




  3. #3
    Harlan Grove
    Guest

    Re: Tab Down?

    SteveK wrote...
    >Is there a way to change the behavior of the Tab key so that rather

    moving
    >to the next cell to the right of the current one, it instead moves

    down to
    >the cell below the current one? I find that I want to Tab down more

    often
    >than Tab right and the left hand is usually better situated to hit the

    Tab
    >key than it is to move across the keyboard to find the Down arrow.


    The [Tab] key is mapped as ActiveCell.Next.Activate, and the .Next
    property of any range is either the next cell to the right (unprotected
    worksheets) or the next unlocked cell to the right (protected
    worksheets). I don't believe it's possible to change the .Next
    property's behavior to make it travel downwards rather than rightwards.

    You could change the [Tab] and [Shift]+[Tab] keys' behaviors using VBA,
    but if you need to use VBA anyway, you may be better off using a macro
    to select a multiple area range in the order you want to access the
    cells. Once you've selected cells in your desired access order, the tab
    key will move between cells in that order.

    For example, if you want to travel from C2 to C6 to C10 to D2 to D10
    then back to C2, select C2, hold down the [Ctrl] key and click on C6,
    C10, D2, D10 in that order. Then run the menu command Insert > Name >
    Define and give this multiple area range the worksheet-level name
    EntryCells. Then use the following macro to select those cells.


    Sub SelectEntryCells()
    ActiveSheet.Names("EntryCells").RefersToRange.Select
    End Sub


  4. #4
    Harlan Grove
    Guest

    Re: Tab Down?

    Bob Phillips wrote...
    >Steve,
    >
    >Goto menu Tools>Options>Edit, select the Move selection after Enter,

    and
    >pick your direction.

    ....

    Doesn't make the [Enter] key behave like the [Tab] key. If C2, C6 and
    D2 were the only unlocked cells in a protected worksheet, and C2 were
    the active cell, pressing [Enter] would make C3 rather than C6 the
    active cell. If all the unlocked cells were adjacent, I can't see why
    anyone would screw around with [Tab] or [Enter] rather than just using
    the arrow keys.


  5. #5
    Don Guillett
    Guest

    Re: Tab Down?

    Here is the general idea to remap a key to run a macro.
    Sub tabkey()
    Application.OnKey "{TAB}", "DOIT" ' ActiveCell.Offset(1).Select
    'Application.OnKey "{TAB}" 'To change to default
    End Sub
    Sub DOIT()
    ActiveCell.Offset(1).Select
    End Sub

    --
    Don Guillett
    SalesAid Software
    donaldb@281.com
    "SteveK" <sk-reeemovethis@dolby-reeemovethis.com> wrote in message
    news:OzliIxdSFHA.3560@TK2MSFTNGP14.phx.gbl...
    > Is there a way to change the behavior of the Tab key so that rather moving
    > to the next cell to the right of the current one, it instead moves down to
    > the cell below the current one? I find that I want to Tab down more often
    > than Tab right and the left hand is usually better situated to hit the Tab
    > key than it is to move across the keyboard to find the Down arrow.
    >
    > SteveK
    >
    >




  6. #6
    Gord Dibben
    Guest

    Re: Tab Down?

    Which will not affect the Tab key direction but does work with the ENTER key.


    Gord Dibben Excel MVP

    On Mon, 25 Apr 2005 22:38:56 +0100, "Bob Phillips"
    <bob.phillips@notheretiscali.co.uk> wrote:

    >Steve,
    >
    >Goto menu Tools>Options>Edit, select the Move selection after Enter, and
    >pick your direction.
    >
    >--
    >
    >HTH
    >
    >RP
    >(remove nothere from the email address if mailing direct)
    >
    >
    >"SteveK" <sk-reeemovethis@dolby-reeemovethis.com> wrote in message
    >news:OzliIxdSFHA.3560@TK2MSFTNGP14.phx.gbl...
    >> Is there a way to change the behavior of the Tab key so that rather moving
    >> to the next cell to the right of the current one, it instead moves down to
    >> the cell below the current one? I find that I want to Tab down more often
    >> than Tab right and the left hand is usually better situated to hit the Tab
    >> key than it is to move across the keyboard to find the Down arrow.
    >>
    >> SteveK
    >>



  7. #7
    RagDyeR
    Guest

    Re: Tab Down?

    One way to make the Tab key move the focus down instead of across, is to
    select a range.

    Don't know if this is exactly what you're looking for, but it does do what
    you asked, to a certain extent.

    Click in a cell and drag down 5 or 10 rows, to create a selected range.
    The focus is in the first cell, denoted as being white.
    Key in an entry.
    Hit <Tab>
    Focus moves down to stay within the selected range.
    Continue as needed, and then click "away", to unselect the range.

    This temporary range selection to contain the focus also works with <Enter>,
    where you could select across columns, within a row, and make the <Enter>
    key act as a <Tab>.
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================

    "SteveK" <sk-reeemovethis@dolby-reeemovethis.com> wrote in message
    news:OzliIxdSFHA.3560@TK2MSFTNGP14.phx.gbl...
    Is there a way to change the behavior of the Tab key so that rather moving
    to the next cell to the right of the current one, it instead moves down to
    the cell below the current one? I find that I want to Tab down more often
    than Tab right and the left hand is usually better situated to hit the Tab
    key than it is to move across the keyboard to find the Down arrow.

    SteveK




  8. #8
    Registered User
    Join Date
    01-20-2023
    Location
    Delhi
    MS-Off Ver
    2007
    Posts
    1

    Re: Tab Down?

    I have just tried, and it works But How do you split a cell into 2 in Excel?

  9. #9
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Tab Down?

    Hi.

    It's a forum rule that you start your own thread, rather than "piggy-backing" on someone else's thread. This helps prevent massive confusion arising - which will happen if it is not clear which question is being answered. So please start your own thread and explain your own problem (make sure that, right from the start, you use a meaningful title (NOT things like "help needed" or "urgent problem"... think of the Google search terms that you would use to find the solution).

    A picture is worth 1,000 words. An Excel sheet is worth 1,000 pictures. So, prepare a SMALL sample sheet (10-20 rows, not thousands!!!). Make sure there is enough data to demonstrate your need. Make sure your desired results are shown, mock them up manually if necessary. Remember to remove ALL confidential information first!!!


    The yellow banner about sample worksheets, at the top of the screen tells you how to post a sheet here on the Forum.

    Thread CLOSED.
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1