Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default can I autopopulate from a long drop down list in Excel?

I have a very long list of referring physicians in a drop down list for data
entry people to populate. I would like them to type in the first 3
characters and be immediately directed to that area of the drop down list.
Is this possible? Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,522
Default can I autopopulate from a long drop down list in Excel?

Instead of the dropdown.
This will take you to the name in col J

Sub gotonfirst3letteredname()
myname = InputBox("Enter first 3 letters of name")
If Len(myname) < 3 Then
MsgBox "THREE letters"
Exit Sub
End If
Columns("J").Find(What:=myname, After:=Range("j1"), _
LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False).Activate
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"seve" wrote in message
...
I have a very long list of referring physicians in a drop down list for
data
entry people to populate. I would like them to type in the first 3
characters and be immediately directed to that area of the drop down list.
Is this possible? Thanks!


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,071
Default can I autopopulate from a long drop down list in Excel?

No, you can't. Not in the way you want it to work. Don gave you a way to
do it not using a drop-down list. There is a way to give you somewhat what
you want, though, and still use a drop-down list.. Obviously, you have your
listing in alphabetical order. Go to that list. Looking at only the first
letter of the name, say "C", insert a blank cell in your list immediately
above the first "C" name. Type "C" (without the quotes) into that blank
cell. Do that for every letter in the alphabet. Setup your Data Validation
cell using that new list. Now, if the user types (into the Data Validation
cell) the first letter of the name he is looking for, and clicks on the
drop-down arrow, the drop-down will shift to that letter. Does that help?
HTH Otto

"seve" wrote in message
...
I have a very long list of referring physicians in a drop down list for
data
entry people to populate. I would like them to type in the first 3
characters and be immediately directed to that area of the drop down list.
Is this possible? Thanks!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel Drop Down/ Autopopulate Philip Excel Worksheet Functions 5 March 27th 09 10:48 PM
Quick Find in long drop down list Candyman New Users to Excel 3 May 30th 08 06:29 PM
Drop down menu with emp name then autopopulate with supervisor... Paul (ESI) Excel Discussion (Misc queries) 10 August 28th 07 07:06 PM
Autopopulate a drop down list in Excel How to autopopulate a drop down list Excel Discussion (Misc queries) 2 July 31st 07 11:26 AM
Help with Excel - autopopulate a long table based on infor from an jcpotwor Excel Discussion (Misc queries) 2 July 12th 07 03:12 PM


All times are GMT +1. The time now is 11:34 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"