+ Reply to Thread
Results 1 to 4 of 4

Drop Down Lists - navigation

Hybrid View

  1. #1
    Registered User
    Join Date
    02-03-2008
    Posts
    1

    Red face Drop Down Lists - navigation

    Hello Excel Gurus,

    I have made a very lengthy drop down list in an excel form as I need to restrict the user from entering additional categories.

    I would like to make it simple to select data whereby the user starts types the first letter of the category to jump them to the item they want to select rather than having to scroll through the entire list each time.

    A number of entries will be on each form and the current method would get very tedious.

    Does anyone know how to do this??? I am using Excel version 2003 on PC.

    Thanks N

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523
    Quote Originally Posted by Burnsy
    Hello Excel Gurus,

    I have made a very lengthy drop down list in an excel form as I need to restrict the user from entering additional categories.

    I would like to make it simple to select data whereby the user starts types the first letter of the category to jump them to the item they want to select rather than having to scroll through the entire list each time.

    A number of entries will be on each form and the current method would get very tedious.

    Does anyone know how to do this??? I am using Excel version 2003 on PC.

    Thanks N
    This needs to be done with the combo box from the controls tool bar, this requires vba, are you willing to go that way??

  3. #3
    Forum Contributor
    Join Date
    08-10-2006
    Posts
    723
    hi

    this may help

    HTML Code: 
    steve

  4. #4
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523
    If you place your combo box on the sheet, and your list is on sheet 2 column A, this code will populate the combo box
       ComboBox1.List = _
          Worksheets("Sheet2").Range("A1") _
          .CurrentRegion.Columns("A").Value

+ Reply to 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