+ Reply to Thread
Results 1 to 12 of 12

Highlighting the value in dropdown list while typing the required value

  1. #1
    Forum Contributor
    Join Date
    08-02-2015
    Location
    Hyderabad
    MS-Off Ver
    2007
    Posts
    160

    Highlighting the value in dropdown list while typing the required value

    Hi All,

    I'm finding difficulties in selecting value in data validation list i.e., I've dropdown list with about 30 values in which If I have to select any value that is in the middle of the list, I've to go through all the list to select it.

    Solution I need is..If I type any word in keyboard, is there any way we can highlight the word that I'm looking for

    I dont want highly technicality such as search suggestion, this is the functionality which we can see in any of the web forms. So can we implement to our data validation list

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Highlighting the value in dropdown list while typing the required value

    Is your drop down on a sheet or in a userform?

    I have solutions for both.

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  3. #3
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Highlighting the value in dropdown list while typing the required value

    Use an ActiveX combo box.

    It has an autocomplete property.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  4. #4
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Highlighting the value in dropdown list while typing the required value


  5. #5
    Forum Contributor
    Join Date
    08-02-2015
    Location
    Hyderabad
    MS-Off Ver
    2007
    Posts
    160

    Re: Highlighting the value in dropdown list while typing the required value

    Thanks for your reply mehmetcik

    As per your suggestion, attached the file for your reference.

    Just for your info, I've already used offset formula in this data validation to minimize the values based on value selected in Item Picklist. So if you can edit this formula in such a way that dependent picklist & autoselect function works for me in this picklist, that would be a great help for me

    This function is an optional. If we can do, Please let me know the way to sort the list automatically as I observed that list is not in an order

    Receipts UF is the sheet where Model is the list in which I need these functionalities
    Attached Files Attached Files
    Last edited by laansesu; 10-11-2015 at 03:10 AM.

  6. #6
    Forum Contributor
    Join Date
    08-02-2015
    Location
    Hyderabad
    MS-Off Ver
    2007
    Posts
    160

    Re: Highlighting the value in dropdown list while typing the required value

    Thanks for your reply Tony, as I'm not aware of VBA right now. I donot want to go with Combo Box. Even Leo Taxi who is a member in this forum has provided me the combo box but it couldnt help me

    If you can, Please have VB Code on this data validation list (rather than VB) which is already set in my excel.
    Last edited by laansesu; 10-11-2015 at 03:11 AM.

  7. #7
    Forum Contributor
    Join Date
    08-02-2015
    Location
    Hyderabad
    MS-Off Ver
    2007
    Posts
    160

    Re: Highlighting the value in dropdown list while typing the required value

    Thanks for your reply Jason.

    As per your link, Auto-Complete option is already enabled in my excel where as I didnt understand about the "Move Your List Of Items Is In The Range Immediately Above The Validation Cell."

    Could you please elaborate it or I've attached the excel file. Can you please help me out in making this happen.
    Attached Files Attached Files

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Highlighting the value in dropdown list while typing the required value

    Quote Originally Posted by laansesu View Post
    Thanks for your reply Tony, as I'm not aware of VBA right now. I donot want to go with Combo Box. Even Leo Taxi who is a member in this forum has provided me the combo box but it couldnt help me
    Ok

    Thanks for the feedback!

  9. #9
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Highlighting the value in dropdown list while typing the required value

    I'll only open uploaded workbooks, not zip files.

    Assuming some basic facts about your sheet, which you can adjust to match your real layout.

    You have column headings in row 1
    Your data validation dropdowns are in column D (starting in D2)
    Your validation list contains 20 items.

    First insert 20 empty rows above your column headings, so that the headings are now in row 21 and your first data validation dropdown is in D22.
    Copy your list of items used for validation into D1:D20, in the order that you want them in the list if you click the dropdown arrow.
    Use D1:D20 to fill your validation dropdown.
    Hide rows 1:20

    Start typing in D22.

    A couple of things to note.

    1. It will not work if there are any empty cells between the D1 and the cell you are typing into. (Blank cells, i.e. ="" or any formula that returns "" should still work ok).
    2. You cannot use auto complete and the dropdown together, only one or the other, although autocomplete entries will be validated against the list. (there is no workaround for this, if you want both then you will need to use Tony's activex combobox suggestion).

    I think this is right, I haven't needed to set this up in a sheet since 2008 and don't have time to test now. Hopefully somebody will correct any errors if needed.

  10. #10
    Forum Contributor
    Join Date
    08-02-2015
    Location
    Hyderabad
    MS-Off Ver
    2007
    Posts
    160

    Re: Highlighting the value in dropdown list while typing the required value

    Quote Originally Posted by jason.b75 View Post
    I'll only open uploaded workbooks, not zip files.

    Assuming some basic facts about your sheet, which you can adjust to match your real layout.

    You have column headings in row 1
    Your data validation dropdowns are in column D (starting in D2)
    Your validation list contains 20 items.

    First insert 20 empty rows above your column headings, so that the headings are now in row 21 and your first data validation dropdown is in D22.
    Copy your list of items used for validation into D1:D20, in the order that you want them in the list if you click the dropdown arrow.
    Use D1:D20 to fill your validation dropdown.
    Hide rows 1:20

    Start typing in D22.

    A couple of things to note.

    1. It will not work if there are any empty cells between the D1 and the cell you are typing into. (Blank cells, i.e. ="" or any formula that returns "" should still work ok).
    2. You cannot use auto complete and the dropdown together, only one or the other, although autocomplete entries will be validated against the list. (there is no workaround for this, if you want both then you will need to use Tony's activex combobox suggestion).

    I think this is right, I haven't needed to set this up in a sheet since 2008 and don't have time to test now. Hopefully somebody will correct any errors if needed.
    No Its not working for me. I copied the items in the above cells and started typing in the data validation list which is not at all working

    Could you please help regarding this.

  11. #11
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Highlighting the value in dropdown list while typing the required value

    Quote Originally Posted by laansesu View Post
    No Its not working for me. I copied the items in the above cells and started typing in the data validation list which is not at all working

    Could you please help regarding this.
    Without seeing what you have done I could guess all day and still not resolve the issue.

    Please attach your workbook (not a zip file) showing what you have tried. If it is too big to upload then try removing any sheets that are not relevant to the question.

  12. #12
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Re: Highlighting the value in dropdown list while typing the required value

    Here is a link to a You Tube vid that I have found useful at times. You cah build a searchable dropdown list using formulas only.

    HTML Code: 
    Jim O

+ 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. Replies: 8
    Last Post: 04-30-2015, 12:18 PM
  2. Dropdown list required
    By Learning ExL in forum Excel General
    Replies: 38
    Last Post: 04-22-2015, 03:32 PM
  3. Search by typing in first letter into dropdown box
    By kathhear in forum Excel General
    Replies: 2
    Last Post: 03-15-2013, 03:46 AM
  4. Adding to dropdown list by typing (Excel 2007)
    By KJL in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 07-19-2012, 10:03 AM
  5. Replies: 21
    Last Post: 12-02-2009, 03:27 PM
  6. [SOLVED] Typing and storing comments on dropdown selection
    By bleugh in forum Excel General
    Replies: 3
    Last Post: 12-11-2006, 04:44 AM
  7. VLOOKUP specific data for month required via dropdown list
    By Toni Bennett in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-07-2006, 11:35 AM

Tags for this Thread

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