Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Userforms and filtering

Status
Not open for further replies.

Navvy

Technical User
Apr 12, 2002
64
0
0
US
Hello!

I have created a userform for the first time and require some help. Firstly, how do I add data to the drop down list? Secondly, based on this selection how would I filter for that data (which is in column A).

Thanks You!
 

Combo3.RowSourceType = "Table/Query"
cmbBox1.RowSource = "SELECT name FROM table"
or
Combo3.RowSourceType = "Value List"
Combo3.RowSource = "1;2;3;4"

Success
 
Hi Navvy,

In Excel, set the Row Source in the Properties Sheet or, in code ..

Code:
ComboBox1.RowSource = "A1:A6"

.. supplying your own name and range, of course.

Enjoy,
Tony
 
You may find that you want to examine each value before adding it to your combobox (to filter out duplicates, etc). The following code adds items one at a time from a source range:
Code:
Combobox1.clear
For Each r In Range("A6:A1000")
   If rows(r.row).entirerow.visible = true and Len(r.Value) > 0 Then
      ComboBox1.AddItem r.Value
   End If
Next r
Now to filter your data when the user makes a selection in your Combobox (pretend your data is in A6:C1000):
Code:
Sub ComboBox1_Click()
   Sheets("Sheet1").Range("A6:C1000").Autofilter (Field:=1, criteria1:=ComboBox1.Value)
End Sub

Hope that helps!


VBAjedi [swords]
 
Thank You! This seems what I need. But for some reason I can't get it working. Where should I put the code? I have named my drop down list TimPairs.
 
Well, that depends on what you want to do. If you want the list to be filled once each time the form is opened, put the first bit of code in the UserForm_Initialize() event of your form. Or, to have it filled each time the user works with the form, you could put it in the UserForm_Activate() event.

You could also attach the code to a button on the form so the user could refresh the list anytime they want to.

The second bit of code goes in the ComboBox1_Click event.

Let us know if you get everything running!

VBAjedi [swords]
 
Hi Jedi. Using your code I seem to get run time errors. I have put the code in UserForm_Initialize().

TimPair.Clear
For Each r In Range("A6:A1000")
If Rows(r.Row).EntireRow.Visible = True And Len(r.Value) > 0 Then
TimPair.AddItem r.Value
End If
Next r

TimPair is what I have named the listbox.

RunTime error 438. Object doesn't support this property or method.
 
What line is giving you the error?

Assuming the listbox exists when the form is initialized and you are correctly referencing it, I would guess you might need an explicit reference to the worksheet. Try:

For Each r In Worksheets("MySheetName").Range("A6:A1000")

If that doesn't work, let me know the specific line that is causing the error, and if it is the same error.

VBAjedi [swords]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top