Results 1 to 8 of 8

Find as you type in listbox control - solution for multi-column listbox - vba dictionary

Threaded View

wazimu13 Find as you type in listbox... 12-08-2014, 09:22 AM
MickG Re: Find as you type in... 12-08-2014, 11:20 AM
wazimu13 Re: Find as you type in... 12-08-2014, 11:39 AM
MickG Re: Find as you type in... 12-08-2014, 12:04 PM
nilem Re: Find as you type in... 12-08-2014, 12:23 PM
wazimu13 Re: Find as you type in... 12-08-2014, 06:25 PM
wazimu13 Re: Find as you type in... 12-08-2014, 06:12 PM
shairabellax Re: Find as you type in... 11-05-2018, 03:42 AM
  1. #1
    Registered User
    Join Date
    04-19-2013
    Location
    England
    MS-Off Ver
    Excel 2010
    Posts
    87

    Find as you type in listbox control - solution for multi-column listbox - vba dictionary

    hi

    I have the following code courtesy o jindon from an old thread (2011) at the Mrexcel forum. It works well for a listbox containing only one column, but i need it for a three column listbox. i would appreciate some help as i dont know much about dictionaries.

    I have three columns of data and i want the three items for any matched rows to be returned to the listbox.

    Userfilter is the name of the textbox on the form where the user enters a string to search and filternames is the name of the listbox where results are returned.

    I prefer this dictionary approach as its alot faster than an array solution i tried.

    thanks

    Private Sub UserFilter_Change()
    Dim a, e
    UserFilter.Clear
    With Sheets("names")
        a = .Range("a2", .Range("a" & Rows.Count).end(xlUp)).Value
    End With
    With CreateObject("Scripting.Dictionary")
        .CompareMode = vbTextCompare
        For Each e In a
            If InStr(1, e, UserFilter.Value, 1) > 0 Then .item(e) = e
        Next
        If .Count > 0 Then Filternames.List = .keys
    End With
    End Sub
    In the sample file, id like to see the company ID, name and location in the listbox. Click the blue button on the first sheet to launch the form. thanks

    Sample file attached : Dict.xlsb
    Last edited by wazimu13; 12-08-2014 at 10:02 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 01-07-2018, 04:13 PM
  2. [SOLVED] Multi column listbox
    By tradinup2 in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 03-01-2013, 05:12 PM
  3. [SOLVED] Find Multi Selected Items in Listbox in Range
    By Sniper in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-08-2012, 07:53 AM
  4. Combobox-listbox multi-type search
    By greekboyuk in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-01-2011, 03:47 AM
  5. Multi Column ListBox
    By Rick_Stanich in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 01-12-2010, 02:39 PM

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