Closed Thread
Results 1 to 17 of 17

Auto complete Entries With Drop Down List

  1. #1
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Auto complete Entries With Drop Down List

    Hi all.
    Is there a way to auto complete a drop down without using macro codes?
    lets say Sheet1 contain the drop down options and sheet2 have the validated drop down list of 200.
    Thank you.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Auto complete Entries With Drop Down List

    The short answer is "No" there is no way to have the dropdown options auotcomplete without using macros.

    You can use this shortcut, however
    Assuming the list is in alphabetical order, before each new letter in your list, insert the letter (i.e. A before the A's, B before the B's...) Then, first enter the letter in the dropdown box, then when you open it up, it will initiate with the words beginning with that letter. Make sense?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Auto complete Entries With Drop Down List

    If you use a combobox instead of Data Validation with List, then you will get autocomplete without macros. If you can attach a file and indicate where your list of items is I can demonstrate.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  4. #4
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Re: Auto complete Entries With Drop Down List

    to ChemistB, can you make sample file? thanks
    to Jeff, i use a combo box before, is this by using the developer mode? if so, i can't make it to work if the developer mode is off or non existing in another computer. now back to my problem, say if i use a combo box for the whole column (maybe 300 or 400 cells) does this mean that i have to create that much combo box too or it can be drag down and copy them?
    Thanks for the quick reply.

  5. #5
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Auto complete Entries With Drop Down List

    You insert the combobox by using Developer mode, but that is just to insert it. You do not have to use Developer mode to use it--in fact, it will not work if Developer mode is on.

    In the attached file the list of items is found on on sheet "Country List". The list in column A is a named range called CountryList.

    On Sheet1, I followed these steps:

    1. Enter Developer mode
    2. Click Insert and select the combobox icon from ActiveX controls (the bottom half)
    3. Drag a combobox onto the sheet
    4. Right-click on the combobox and select Properties
    5. Find the ListFillRange property and enter CountryList for its value. This tells the combobox use the named range CountryList as the list of items.
    6. Exit Developer mode


    Now you can begin typing in the combobox and it will autoselect the item nearest to what you type. When you follow the above instructions no macro is necessary.

    By the way, please do not ask other members to provide a sample file to answer your question. As the person asking, you should be the one to provide a sample file. Then we can modify your file to show a solution.
    Attached Files Attached Files
    Last edited by 6StringJazzer; 04-13-2016 at 03:33 PM. Reason: added blue text

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Auto complete Entries With Drop Down List

    Attached is a list of girl names set up the way I suggested in A2:A2310. In C1, I entered G because I want to peruse names that begin with G. I think the combobox may be the way to go with this. Kudos Jeff.
    Attached Files Attached Files

  7. #7
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Re: Auto complete Entries With Drop Down List

    Thank you for helping
    ChemistB: the attachment reflect only drop down that validate A1:A2310 data. cannot be type over and auto complete, or i am missing something
    Jeff: combo box might be one of the solution here. can i copy it to make C2:C1000 into this format? if so how do i do it? and is the appearance display combo box not a regular blank cell until selected to display the box?
    both your input is much appreciated. Thanks

  8. #8
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Auto complete Entries With Drop Down List

    Quote Originally Posted by getafixkwik View Post
    can i copy it to make C2:C1000 into this format? if so how do i do it?
    Right click on the combobox. Select Properties. Under the ListFillRange property change CountryList to C2:C1000.
    is the appearance display combo box not a regular blank cell until selected to display the box?
    I am not sure what you're asking here, but the combobox is a separate control, not a cell. Before you were using Data Validation with a List, which is a cell. Then when you select the cell, the dropdown becomes available. A combobox is not a cell, although you can link it to a cell so whatever is selected in the combobox appears in the linked cell. In the Properties list, set LinkedCell to whatever cell you want to link. You can also adjust the size and position of a combobox to fit on top of a cell if that's the appearance you want.

  9. #9
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Auto complete Entries With Drop Down List

    Concerning my sheet, it is the best you can do with Data Validation. The inclusion of the letters of the alphabet into the list allow you to open the list at whichever letter you want thus reducing the scrolling required. It does not do any sort of auto complete.

    Concerning your question about copying the combo boxes. If you are the combo box is within the cell, if you go into Design mode, you can copy and paste the cell and the combo box will copy also.

  10. #10
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Re: Auto complete Entries With Drop Down List

    combo box is the likely answer. can i fill C1:C1000 with combo box with country list in drop down choice? (from sample or its not use that way?) if its possible, then how do i fill its property if i use calibri #12 font and column width of 50. with default size of a cell. seems weird to ask those questions. really don't have the basic knowledge, mostly i just follow example. thanks again jeff and thank you too ChemistB
    Last edited by getafixkwik; 04-19-2016 at 12:18 AM.

  11. #11
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Re: Auto complete Entries With Drop Down List

    perhaps this is not the solution to this help. since i just want the said column to be a typing text cells. auto complete could have been a great help (If there's any).discounting drop down since the list is long, it will be inconvenient. my apology.
    Last edited by getafixkwik; 04-19-2016 at 04:29 AM.

  12. #12
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Auto complete Entries With Drop Down List

    I'm not sure what the issue is? As I said, you can copy the combobox to 1000 cells without an issue.

  13. #13
    Forum Contributor
    Join Date
    04-14-2014
    Location
    Philippines
    MS-Off Ver
    2007, 2010, 2013, 2016.
    Posts
    169

    Re: Auto complete Entries With Drop Down List

    Hi again ChemistB, actually i'm turned off with the appearance, and how i replace one inconvenience for another. or i'm just ignorant of the many uses.
    > honestly i looks awful hehehe but this tread is very much solved. i'll mark solved after few Q&A if it's ok with you
    > like after filling one combo and proceed to the next combo. down arrow or enter key won't jump to the next box. the mouse have to point to the next box for another input.
    > can you let the combo box disappear after your work (nice if it look like the normal spreadsheet)? and does the box also show in print (no printer here)?
    > can't be filter.
    > manually designing the box is difficult (to match the cell size or there are easier ways to it (i zoomed it to 200%)
    i hope you can give me more tips on this
    Thanks
    Last edited by getafixkwik; 04-19-2016 at 02:08 PM.

  14. #14
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Auto complete Entries With Drop Down List

    after filling one combo and proceed to the next combo. down arrow or enter key won't jump to the next box. the mouse have to point to the next box for another input. TRUE
    > can you let the combo box disappear after your work (nice if it look like the normal spreadsheet)? and does the box also show in print (no printer here)? You can remove the ARROW (DropButtonStyle =plain but the gray box will always be there.
    > can't be filter. TRUE
    > manually designing the box is difficult (to match the cell size or there are easier ways to it (i zoomed it to 200%) Fair enough

  15. #15
    Registered User
    Join Date
    03-29-2022
    Location
    Pennsylvania, USA
    MS-Off Ver
    MS 365 Enterprise / Home and Office
    Posts
    1

    Re: Auto complete Entries With Drop Down List

    Great and simple fix that worked well for me. Thanks!

  16. #16
    Registered User
    Join Date
    06-03-2021
    Location
    Cambridge
    MS-Off Ver
    2019
    Posts
    1

    Re: Auto complete Entries With Drop Down List

    works in excel but when you put it in teams it stops working any ideas why?

  17. #17
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,869

    Re: Auto complete Entries With Drop Down List

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Complete Drop Down List
    By santhire in forum Excel General
    Replies: 0
    Last Post: 03-29-2016, 01:59 AM
  2. Auto complete in LIST (drop down)
    By luvnet18 in forum Excel General
    Replies: 2
    Last Post: 07-12-2013, 08:23 AM
  3. Auto complete with drop down list
    By ade_tracy in forum Excel General
    Replies: 3
    Last Post: 07-12-2013, 06:12 AM
  4. auto complete from Drop down List
    By hel in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-02-2010, 12:10 PM
  5. Auto-Complete in fields from drop-down list data
    By lamasay in forum Excel General
    Replies: 1
    Last Post: 07-21-2010, 03:26 AM
  6. auto complete within a drop down list
    By gaelforce in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-09-2007, 07:10 PM
  7. Auto-complete an entry in drop-down list
    By Jason in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 08-23-2005, 07:05 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