I am trying to build a query for a client database that I can search a field for their client status (current client, in progress, etc) I built the query, but when I run it I don't get any records returned. I am using a form to enter the query criteria and then using the query to populate another form. I have done this with names, e-mails, etc and they work fine. I'm not sure why I am having trouble with this. Here is my query SQL
In this case the form "client search form" has a box "status" that I am entering the criteria (ex: "In Progress"). I then have a macro button on that form with the following:SELECT Clients.Status, Clients.Company, Clients.[Last Name], Clients.[First Name], Clients.[E-mail Address], Clients.[Business Phone], Clients.[Home Phone], Clients.[Mobile Phone], Clients.Notes
FROM Clients
WHERE (((Clients.Status) Like "*" & [Forms]![Client Search Form]![Status] & "*"));
This is built the same way as my other queries, so I'm not sure why it isn't working. Any help would be appreciated.OpenQuery - SearchQueryStatus, Datasheet, Edit
OpenForm - SearchQueryClientStatus, Form, , , , Normal
Close - Query, SearchQueryStatus, Prompt