List

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

Guest

I have created a drop-down list for my spreadsheet, please advise on how do i
format the list in a way that when i hit the "D" it will jump to the entries
that are starting with "D"

This would be helpful when I have a extremely long list. Thanks
 
Hi
if you use a listbox from 'Data - Validation - List' no way to achieve this
 
Frank,
Is there any other way that you could reccomend other than using Data -
validation, as i have a preset list of project code, and I will have to use
that preset list as a reference to enter the project that has been work on,
 
Hi
then you have to use VBA and a combobox tool element for this. But this
would be much more work
 
If you show the Control toolbox toolbar (view|toolbars), you can add a combobox
to your worksheet.

There's another icon on that toolbar (design mode is the tooltip when the cursor
lingers over it).

Click on that and then rightclick on the combobox.
Select properties
assign the linkedcell to the cell beneath the combobox (so your formulas won't
have to change)
Assign the ListFillRange to the same list as you used for Data|validation
(you'll have to type it in)
Assign Style to 2-fmstyledropdownlist
(0-fmStyleDropDownCombo will allow the user to type things not on your list)
assign MatchEnter to either 1 - fmMatchEntryComplete
(or 0 - fmMatchEntryFirstLetter)
(try it both ways and see what you want--I'm guessing complete)

And then toggle the designmode icon to test it out.

If you format the linked cell with a custom format of ;;;, it may be nicer.
 

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