I cannot figure out how to filter a continuous form listing values existing in only one table. I want to use a Combo Box to accomplish this. I put custom values into the Combo Box as follows:
- Dell Laptops
- HP Minis
- Surfaces
- Projectors
However, I cannot generate the correct code to make this work. Here is what I have so far:
Code:
Private Sub Combo30_AfterUpdate()
If (Me.[Combo30].Value = "Dell Laptops") Then
Me.Filter = "Brand_Type_Model_Number = '*Dell*'" & Chr(34) & Me.Combo30 & Chr(34)
Me.FilterOn = True
End If
End Sub
Basically, I want to filter the form based on items that exist on the Brand/Type/Model_Number field that contain the word Dell, if the value in Combo30 is "Dell Laptops". I get this error when I try to select Dell Laptops from the Combo Box:

Could someone help me out?