searchable dropdown list with exchangeable names

jondu

Board Regular
Joined
Feb 6, 2019
Messages
71
Hello,
I did a list as suggested here :
https://trumpexcel.com/excel-drop-down-list-with-search-suggestions/
It works very fine.

[FONT=&quot]However, I would like to improve it for my needs.
My list in column F contains cell with many words, separated by a coma : “,”
Example :
F3 : house, cat, hospital, game
F4 : house, game, hospital
F5 : hospital, cat, game, house
etc.
[/FONT]

[FONT=&quot]I would like to be able to find the cell depending the names I’m typing in the B3 combobox.
Example, I type this :
house, cat
OR
cat, house
=> I must have as option in the dropdown list the F3 and F5 cells.
(the order of the names must be able to be exchanged)
Is it possible ? (and without vba preferred)
[/FONT]
 
You know what : don't bother with the hidding of combobox if too complicated : we can place the combobox in the cells AK2 : AK6 and AL2:AL6.
Ok, this is complicated indeed.?

So we now deal with the dynamic range of the list problem..
Replace "Sub allList(a As Long)" with this:
VBA Code:
Sub allList(a As Long)
Dim fm, gm
Dim n As Variant

With Sheets("Matrice BXL")
    fm = Application.Match("Sélectionner paquet sol", .Range("D:D"), 0)
    gm = Application.Match("Sélectionner paquet eau", .Range("D:D"), 0)
            
    n = .Range("D:D").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
            
        If a = 1 Then
            'LIST 1 location
            vList1 = .Range("D" & fm & ":D" & gm - 1)
        ElseIf a = 2 Then
            'LIST 2 location
             vList2 = .Range("D" & gm & ":D" & n)
        End If

End With
End Sub

The code will find "Sélectionner paquet sol" & "Sélectionner paquet eau" in col D in sheet Matrice BXL.
LIST1 will start from "Sélectionner paquet sol" to 1 cell above "Sélectionner paquet eau".
LIST2 will start from "Sélectionner paquet eau" to the last cell with value in col D.
Please try it by adding or removing some rows in the range in question.

About the bilingual data validation problem:
Sorry, I still can't find what cause the problem, still trying though.
 
Upvote 0

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Please try it by adding or removing some rows in the range in question.
Ok, it's works, perfect ! And as decided, I moved the combobox to AK2:AK6 and AL2:AL6 and no more problems with hiding/unhiding.

About the bilingual data validation problem:
Sorry, I still can't find what cause the problem, still trying though.
Ok, it's less important.

The very last thing : when the user select manually a value in Y261:Y265 and Y274:Y278 (with the menu from the menu list) : there is a movement and the view goes direct to the top of the sheet.
Once he selects a value with help of the combobox, then there is no more problem (but you need to use at list one time a combobox to have the correct behavior).
 
Upvote 0
And for the bilingual menus : I have to say that the code was made originally to work with the 2 cells in green. Then I decided then to add other menu-cells (the ones in yellow) and it is therefore normal that the bilingual behavior do not work for those yellow cells. But I still don't know how to manage that. Maybe this info over the chronological history can help you.
 
Upvote 0
Actually there's a problem with List1 range, it should be D18:D142 but the last code will give you D18:D163.
Well, I need something to define the last row of the range. Maybe the word "EAU" in A149? or "Bouteilles" in D153? or anything else?

The very last thing : when the user select manually a value in Y261:Y265 and Y274:Y278 (with the menu from the menu list) : there is a movement and the view goes direct to the top of the sheet.

Try this one:
Just replace all code in the module with this, it's long so I upload it in /pastebin.com, just click the download button:
 
Upvote 0
ok perfect. There was something wrong with combobox 6

I replace this code : If ComboBox6.Value = vbNullString Then ComboBox6.List = vList2
By this one : ComboBox6.List = vList2
It's now OK.

Actually there's a problem with List1 range, it should be D18:D142 but the last code will give you D18:D163.
Well, I need something to define the last row of the range. Maybe the word "EAU" in A149? or "Bouteilles" in D153? or anything else?
From now, I moved the list 'Bouteilles' in another column => from D to E. So the list 'SOL' is now OK, but have just some blank lines at the end (not a big deal).
Anyway I can add a text like 'END SOL' in D142. That would be the best. And I rembember that when I add rows, I insert it above 'END SOL'.
We then need to adapt a little bit the code I guess :
- the list1 SOL must start at "Sélectionner paquet sol" and end at "END SOL"
- the list2 EAU must start at "Sélectionner paquet eau" and stop at the last cell with value.
 
Upvote 0
I replace this code : If ComboBox6.Value = vbNullString Then ComboBox6.List = vList2
By this one : ComboBox6.List = vList2
It's now OK.
Ah, you're right.

We then need to adapt a little bit the code I guess :
- the list1 SOL must start at "Sélectionner paquet sol" and end at "END SOL"
- the list2 EAU must start at "Sélectionner paquet eau" and stop at the last cell with value.


Ok, use this code for Sub allList(a As Long):

VBA Code:
Sub allList(a As Long)
Dim fm, fm1, gm
Dim n As Variant

With Sheets("Matrice BXL")
    fm = Application.Match("Sélectionner paquet sol", .Range("D:D"), 0)
    fm1 = Application.Match("END SOL", .Range("D:D"), 0)
    gm = Application.Match("Sélectionner paquet eau", .Range("D:D"), 0)
            
    n = .Range("D:D").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
            
        If a = 1 Then
            'LIST 1 location
            vList1 = .Range("D" & fm & ":D" & fm1)
        ElseIf a = 2 Then
            'LIST 2 location
             vList2 = .Range("D" & gm & ":D" & n)
        End If

End With
End Sub
 
Upvote 0
ok, perfect.
And now that I see the efficiency, if it's possible to configure the code also to be able to add a 'END EAU' in list2 it would be perfect. So I can say when I stop the list, as for List1 (i.e. not showing the 15 last '-' in list2 EAU).
We are finnish after that !
And I have to pay you a big drink ;)
 
Upvote 0
Note that when I try with this, I get an error.

VBA Code:
Sub allList(a As Long)
    If a = 1 Then
            '>>> LIST 1 location
                vList1 = Sheets("Matrice BXL").Range("D18:D132")
    ElseIf a = 2 Then
           '>>> LIST 2 location
                vList1 = Sheets("Matrice BXL").Range("D164:D261")
    End If
End Sub
 
Upvote 0
Rich (BB code):
           '>>> LIST 2 location
                vList1 = Sheets("Matrice BXL").Range("D164:D261")

That should be vList2

if it's possible to configure the code also to be able to add a 'END EAU' in list2 it would be perfect. So I can say when I stop the list, as for List1 (i.e. not showing the 15 last '-' in list2 EAU).
Try this:
VBA Code:
Sub allList(a As Long)
Dim fm, fm1, gm, gm1
Dim n As Variant

With Sheets("Matrice BXL")
    fm = Application.Match("Sélectionner paquet sol", .Range("D:D"), 0)
    fm1 = Application.Match("END SOL", .Range("D:D"), 0)
    gm = Application.Match("Sélectionner paquet eau", .Range("D:D"), 0)
    gm1 = Application.Match("END EAU", .Range("D:D"), 0)
    
'    n = .Range("D:D").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
            
        If a = 1 Then
            'LIST 1 location
            vList1 = .Range("D" & fm & ":D" & fm1)
        ElseIf a = 2 Then
            'LIST 2 location
             vList2 = .Range("D" & gm & ":D" & gm1)
        End If

End With
End Sub
 
Upvote 0
OK, eveything is done and I have adapted all my documents (other similar documents, with other data for other regions).
We can close this thread I think.
I would like to thank you warmly for this work of several days. I am very impressed, but especially very surprised to see that people can so help.
Let me know if you come to belgium !
Thank you so much.
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,759
Members
449,048
Latest member
excelknuckles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top