Since these are combo boxes, the second list is not limited to the filtered values, correct? In other words, other values can optionally be entered that are not in the list. More commonly, I have seen filtered list boxes in this type of setup to prevent values from being entered which do not match.May 03, 2012 · Replace (Me.cboFilter.Text, “‘”, “””) & “‘”. Me.FilterOn = True. ‘ If a partial value is typed, filter for a partial company name match. Else. Me.Form.Filter = “ [Company] Like ‘*” & _. Replace (Me.cboFilter.Text, “‘”, “””) & “*'”. Me.FilterOn = True. End If. ‘ Move the cursor to the end of the combo box. In this example, combo boxes are added, to create drop down lists. Introduction to UserForms. In part 1, you'll see how to create a blank Userform. Then you'll name the UserForm, and next you'll Add a Combobox to the UserForm. The objects on a UserForm, such as buttons, and textboxes, are...Answers.microsoft.com Access 2010 combo box selection requery/filter list box Form Goal: Combo box "DistrictLU" drop down selection filters a list box (based on a query "Site Information") on the same form. I have a query "Site Information" that holds all of the over 600 sites and their information (Fields: District, SiteName, Address, City ...