Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
When the (right-click) "Pick From Drop-Down List..." command is used in Excel
to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! |
#2
![]() |
|||
|
|||
![]()
You can use data validationmake a list name it in the
datavalidationselect list =mylist -- Don Guillett SalesAid Software "InstantZen" wrote in message ... When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! |
#3
![]() |
|||
|
|||
![]()
This creates a validation drop-down list, but if you begin typing in the
cell, entries don't "auto-complete" based on the characters you've entered. If you right-click on a cell and select "Pick From Drop-Down List..." and start typing, Excel will suggest entries based on characters you've typed that match contiguous cells in the column above the target cell. If there is a blank cell in between, the command doesn't pick anything up. If I could point to a named range rather than depending on entries in cells above the target cell, the "Pick From Drop-Down List" command would be much more usable. "Don Guillett" wrote: You can use data validationmake a list name it in the datavalidationselect list =mylist -- Don Guillett SalesAid Software "InstantZen" wrote in message ... When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! |
#4
![]() |
|||
|
|||
![]()
No, but the same thing can be done using a Data Validation Drop-Down pick
list. See Debra Dalgleish's site for more info and methods. http://www.contextures.on.ca/xlDataVal01.html Gord Dibben Excel MVP On Fri, 13 May 2005 10:41:03 -0700, "InstantZen" wrote: When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! |
#5
![]() |
|||
|
|||
![]()
Gord,
I can't find a way to create the "auto-suggestion" that "Pick From Drop-Down List..." provides using Data Validation Drop-Down information from Debra's site. You mention a Drop-Down pick list using Data Validation, which sounds promising, how do I invoke this? Thanks! Doug "Gord Dibben" wrote: No, but the same thing can be done using a Data Validation Drop-Down pick list. See Debra Dalgleish's site for more info and methods. http://www.contextures.on.ca/xlDataVal01.html Gord Dibben Excel MVP On Fri, 13 May 2005 10:41:03 -0700, "InstantZen" wrote: When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! |
#6
![]() |
|||
|
|||
![]()
Data Validation dropdown lists don't support autocomplete. If you can
use programming, there are instructions here for adding a combobox from which you can select one of the values from the data validation list. In the combobox, you can enable autocomplete: http://www.contextures.com/xlDataVal11.html Doug Evans (InstantZen) wrote: Gord, I can't find a way to create the "auto-suggestion" that "Pick From Drop-Down List..." provides using Data Validation Drop-Down information from Debra's site. You mention a Drop-Down pick list using Data Validation, which sounds promising, how do I invoke this? Thanks! Doug "Gord Dibben" wrote: No, but the same thing can be done using a Data Validation Drop-Down pick list. See Debra Dalgleish's site for more info and methods. http://www.contextures.on.ca/xlDataVal01.html Gord Dibben Excel MVP On Fri, 13 May 2005 10:41:03 -0700, "InstantZen" wrote: When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
#7
![]() |
|||
|
|||
![]()
Debra,
THANKS! I'll try this. Hopefully, the next release of Excel will include this as a standard, or optional feature to the pick from drop-down command. Thanks to all of you for your quick and considered responses. Doug "Debra Dalgleish" wrote: Data Validation dropdown lists don't support autocomplete. If you can use programming, there are instructions here for adding a combobox from which you can select one of the values from the data validation list. In the combobox, you can enable autocomplete: http://www.contextures.com/xlDataVal11.html Doug Evans (InstantZen) wrote: Gord, I can't find a way to create the "auto-suggestion" that "Pick From Drop-Down List..." provides using Data Validation Drop-Down information from Debra's site. You mention a Drop-Down pick list using Data Validation, which sounds promising, how do I invoke this? Thanks! Doug "Gord Dibben" wrote: No, but the same thing can be done using a Data Validation Drop-Down pick list. See Debra Dalgleish's site for more info and methods. http://www.contextures.on.ca/xlDataVal01.html Gord Dibben Excel MVP On Fri, 13 May 2005 10:41:03 -0700, "InstantZen" wrote: When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
#8
![]() |
|||
|
|||
![]()
Debra,
Your Combo Box code worked, but the nested boxes and click-through requirements to load results to the cell were a bit confusing. I found out that I could copy/paste the named ranges into rows above my validation dropdown cells and engage "Pick from drop down list", and the cells would auto complete. I just hid the rows above (not very elegant, but servicable. Thanks for your help! Doug "Doug Evans (InstantZen)" wrote: Debra, THANKS! I'll try this. Hopefully, the next release of Excel will include this as a standard, or optional feature to the pick from drop-down command. Thanks to all of you for your quick and considered responses. Doug "Debra Dalgleish" wrote: Data Validation dropdown lists don't support autocomplete. If you can use programming, there are instructions here for adding a combobox from which you can select one of the values from the data validation list. In the combobox, you can enable autocomplete: http://www.contextures.com/xlDataVal11.html Doug Evans (InstantZen) wrote: Gord, I can't find a way to create the "auto-suggestion" that "Pick From Drop-Down List..." provides using Data Validation Drop-Down information from Debra's site. You mention a Drop-Down pick list using Data Validation, which sounds promising, how do I invoke this? Thanks! Doug "Gord Dibben" wrote: No, but the same thing can be done using a Data Validation Drop-Down pick list. See Debra Dalgleish's site for more info and methods. http://www.contextures.on.ca/xlDataVal01.html Gord Dibben Excel MVP On Fri, 13 May 2005 10:41:03 -0700, "InstantZen" wrote: When the (right-click) "Pick From Drop-Down List..." command is used in Excel to facilitate key-entry, it only works for contiguous entries in cells in the column above the input cell. blank cells in between break the link. Is there a way to designate a named range of terms as the basis for the "drop-down" list? Microsoft,this should be a standard option! -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Paste a named range to another range in Excel | Excel Discussion (Misc queries) | |||
Identifying single column within named range | Excel Discussion (Misc queries) | |||
Define a range based on another named range | Excel Worksheet Functions | |||
How do you point to a named range in linked workbooks? | Excel Discussion (Misc queries) | |||
named range refers to: in a chart | Excel Discussion (Misc queries) |