Hi all, I'm working a form with filter by comboBox, my purpose is that after the comboBox updated, the form will show related data. See attached picutre, the code i wrote is
Private Sub Combo9_AfterUpdate()
Form.filter = "RepairID = '" & Me.Combo9.Value & "'"
Form.FilterOn = True
End Sub
There's something wrong, the filter did not work...
Could somebody give me some suggestion?
Thanks in advance