+ Reply to Thread
Results 1 to 8 of 8

Can a dipendancy list "Auto Competle"?

  1. #1
    HotRod
    Guest

    Can a dipendancy list "Auto Competle"?

    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?



  2. #2
    Tom Ogilvy
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    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?
    >
    >




  3. #3
    Chip Pearson
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    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?
    >




  4. #4
    HotRod
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    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.



  5. #5
    Debra Dalgleish
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    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


  6. #6
    Tom Ogilvy
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    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.
    >
    >




  7. #7
    HotRod
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    Tom am I correct in assuming that there is not an EVENT that fires each time
    you type a latter into a cell?




  8. #8
    Tom Ogilvy
    Guest

    Re: Can a dipendancy list "Auto Competle"?

    > 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?
    >
    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1