Query Job id selection vis text box input

justchillin

Registered User.
Local time
Today, 00:01
Joined
Jun 19, 2006
Messages
13
Query Job id selection via text box input

I am trying to produce a query that will search for multiple records by job id entered into a text box eg 17656,18768,15679.

The example i have found uses the (LIKE '*value*') so if i type in part of a job id (176) it will display all records starting with 176. I would like to enter specific job id numbers seperated by a , and only display these

Would be grateful for any help
 

Attachments

Last edited:
Use

In(17656,18768,15679) as your criteria, even if you have to build it with VBA.
 
Thanks for the tip :D
 

Users who are viewing this thread

Back
Top Bottom