+ Reply to Thread
Results 1 to 2 of 2

Establish a Tab Order in Excell

  1. #1
    Registered User
    Join Date
    12-10-2013
    Location
    Camp Zama, Japan
    MS-Off Ver
    Excel 2003
    Posts
    1

    Establish a Tab Order in Excell

    I am attempting to establish a tab order in Excel and can not seam to figure out how to accomplish this task. I have reviewed some previous post about this but the code didnt seem to help. Can anyone please assist me?


    Thank You,

    Mike


    Also this was the code I attempted to use previously

    Private Sub Worksheet_Change(ByVal Target As Range)

    Dim aTabOrd As Variant
    Dim i As Long

    'Set the tab order of input cells
    aTabOrd = Array("C9", "H9", "N9", "D11", "N11", "R11", "A14", "A15", "A16", "A17", "K14", "P14", "K15", "P15", "K16", "P16", "K17", "C19", "N19", "B20", "E20")
    'Loop through the array of cell address
    For i = LBound(aTabOrd) To UBound(aTabOrd)
    'If the cell that's changed is in the array
    If aTabOrd(i) = Target.Address(0, 0) Then
    'If the cell that's changed is the last in the array
    If i = UBound(aTabOrd) Then
    'Select first cell in the array
    Me.Range(aTabOrd(LBound(aTabOrd))).Select
    Else
    'Select next cell in the array
    Me.Range(aTabOrd(i + 1)).Select
    End If
    End If
    Next i

    End

  2. #2
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Establish a Tab Order in Excell

    The following link may help you.
    http://visualbasic.ittoolbox.com/gro...-issue-3769285

    Lewis

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Establish Links?
    By sharvie in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-23-2013, 12:52 AM
  2. [SOLVED] How to reverse the order of data in a single column in Excell?
    By vpedchenko in forum Excel General
    Replies: 5
    Last Post: 08-17-2005, 12:05 PM
  3. [SOLVED] cannot re-establish DDE
    By Rick Stahl in forum Excel General
    Replies: 2
    Last Post: 05-30-2005, 10:05 AM
  4. Can the tab order be changed in Excell?
    By rpanderson in forum Excel General
    Replies: 2
    Last Post: 02-07-2005, 05:06 PM
  5. [SOLVED] Can the tab order be changed in Excell?
    By lawdawgnm in forum Excel General
    Replies: 1
    Last Post: 02-07-2005, 03:06 PM

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