Auto complete

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to select a text item from a long drop down list. Is there a way to
have a form of auto complete to help you search the list or do all methods
(eg: data,validation,list) require you to scroll up and down the list to find
the entry you want?
Thanks.
 
Hi Peter,

The workaround enunciated by Debra Dalgleish is the only workaround of which
I am aware.

The implementation of Debra's code is very straightforward and she offers a
sample workbook which can freely be downloaded.

If you are not familiar with macros, you might care to visit David
McRitchie's 'Getting Started With Macros And User Defined Functions' at:

http://www.mvps.org/dmcritchie/excel/getstarted.htm


---
Regards,
Norman



Peter said:
Thanks Norman.
Can you suggest any other solution that does not involve VB code?
Thanks
 
Many thanks Norman
--
Peter
London, UK


Norman Jones said:
Hi Peter,

The workaround enunciated by Debra Dalgleish is the only workaround of which
I am aware.

The implementation of Debra's code is very straightforward and she offers a
sample workbook which can freely be downloaded.

If you are not familiar with macros, you might care to visit David
McRitchie's 'Getting Started With Macros And User Defined Functions' at:

http://www.mvps.org/dmcritchie/excel/getstarted.htm
 
If you're only replacing one cell, the combobox from the control toolbox toolbar
won't require VBA.

If you're replacing cells with different lists, you could use a combobox for
each cell and still not require VBA.

Debra's code is very useful when you have (say) a column of cells that used the
same data|validation that you want replaced.
Thanks Norman.
Can you suggest any other solution that does not involve VB code?
Thanks
 
Thanks Dave
--
Peter
London, UK


Dave Peterson said:
If you're only replacing one cell, the combobox from the control toolbox toolbar
won't require VBA.

If you're replacing cells with different lists, you could use a combobox for
each cell and still not require VBA.

Debra's code is very useful when you have (say) a column of cells that used the
same data|validation that you want replaced.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top