I have built a few dependency lists that have several possible answers in
the drop down box, I'm wondering if it's possible to have the cell "Auto
Complete" as the user types from the list?
I have built a few dependency lists that have several possible answers in
the drop down box, I'm wondering if it's possible to have the cell "Auto
Complete" as the user types from the list?
Not using the data validation drop down.
--
Regards,
Tom Ogilvy
"HotRod" <NOSPAM@youremail.com> wrote in message
news:exNmQdJVFHA.3044@TK2MSFTNGP10.phx.gbl...
> I have built a few dependency lists that have several possible answers in
> the drop down box, I'm wondering if it's possible to have the cell "Auto
> Complete" as the user types from the list?
>
>
This is not supported for dropdown lists.
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
"HotRod" <NOSPAM@youremail.com> wrote in message
news:exNmQdJVFHA.3044@TK2MSFTNGP10.phx.gbl...
>I have built a few dependency lists that have several possible
>answers in the drop down box, I'm wondering if it's possible to
>have the cell "Auto Complete" as the user types from the list?
>
Would it make sense to try and do this in code or am I going to slow things
down considerable? Since I need to do this for every cell in a column what
is available to me except for adding a combo box to each cell or something
of that sort? Is it possible to add a combo box to every cell in a column
"easily"?
Do I even have access to the contents of a cells list?
P.S. Tom, do you ever sleep? I want to thank you for all of the help that
you have given me over the last few months, it really is appreciated and I
feel a little bit guilty for taking so much of your time. THANK YOU.
If this is a data validation dropdown, it doesn'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
HotRod wrote:
> I have built a few dependency lists that have several possible answers in
> the drop down box, I'm wondering if it's possible to have the cell "Auto
> Complete" as the user types from the list?
--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html
Thanks for the thanks, but I am not sure I have helped you that much.
Anyway, the main problem is that when a user is editing a cell, macros do
not run for any practical purpose. You could use combobox from the controls
toolbox toolbar which supports this directly.
You could have a combobox pop up so to speak by using the selection_change
event.
Possibly something like this in the sheet module
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim oOLE As OLEObject
For Each OLEObject In Me.OLEObjects
If OLEObject.TopLeftCell.Column = 3 Then
OLEObject.Delete
End If
Next
If Target.Count > 1 Then Exit Sub
If Target.Column = 3 Then
Set oOLE = Me.OLEObjects.Add( _
ClassType:="Forms.Combobox.1", _
Left:=Target.Left, Top:=Target.Top, _
Width:=Target.Width, _
Height:=Target.Height)
oOLE.ListFillRange = "sheet1!A1:A10"
oOLE.Object.MatchEntry = fmMatchEntryComplete
oOLE.LinkedCell = Target.Address
oOLE.Activate
End If
End Sub
Change Sheet1!A1:A10 to point to the source of your data. You data souce
should be sorted.
Change Target.Column = 3 to the column where you want the activity.
--
Regards,
Tom Ogilvy
"HotRod" <NOSPAM@youremail.com> wrote in message
news:e5%23NYwJVFHA.1044@TK2MSFTNGP10.phx.gbl...
> Would it make sense to try and do this in code or am I going to slow
things
> down considerable? Since I need to do this for every cell in a column what
> is available to me except for adding a combo box to each cell or something
> of that sort? Is it possible to add a combo box to every cell in a column
> "easily"?
>
> Do I even have access to the contents of a cells list?
>
> P.S. Tom, do you ever sleep? I want to thank you for all of the help that
> you have given me over the last few months, it really is appreciated and I
> feel a little bit guilty for taking so much of your time. THANK YOU.
>
>
Tom am I correct in assuming that there is not an EVENT that fires each time
you type a latter into a cell?
> Anyway, the main problem is that when a user is editing a cell, macros do
not run for any practical purpose.
so no, there is no such event.
--
Regards,
Tom Ogilvy
"HotRod" <NOSPAM@youremail.com> wrote in message
news:Orc98VKVFHA.548@tk2msftngp13.phx.gbl...
> Tom am I correct in assuming that there is not an EVENT that fires each
time
> you type a latter into a cell?
>
>
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks