Hi!
I have a form with a search command button, at present, when clicked it brings up all records for jobs 'In Progress', using the following code:
Private Sub Search_Click()
Search_String = "[Status]= 'In Progress'"
DoCmd.ApplyFilter , Search_String
End Sub
I would like this command to also bring up all jobs 'On Hold' as well as those 'In Progress', but i am having trouble getting the OR expression right.
This may be really simple, but i have tried a few combinations and just cannot do it! Can someone PLEASE help me!
Thanks in advance!