keshavmodi
Registered User.
- Local time
- Today, 16:50
- Joined
- Oct 6, 2010
- Messages
- 14
I have a combo box names "combo_1" in access bound Form. The combo box is bound to the field "Field_1" in the table "Table_1". Whenever I select a value from the combo box, I want the record set to be filtered by that value.
I have tried the following code
Private Sub Combo_1_AfterUpdate()
Me.filter=" [Table_1.Field_1]= ' " & combo_1 & " ' "
me.FilterOn = True
End Sub
However this is not working. Please let me know the solution.
Thank you
I have tried the following code
Private Sub Combo_1_AfterUpdate()
Me.filter=" [Table_1.Field_1]= ' " & combo_1 & " ' "
me.FilterOn = True
End Sub
However this is not working. Please let me know the solution.
Thank you