Hi there,
I'm hoping you can help me out here.
I spent the last three months verifying and changing information (by hand) in a database table. I had a query set up to list certain types of parts (i.e. product type 'A' begins with 'CC' followed by a six digit number, etc.).
I need the query to search for product numbers beginning with the letters 'CC', 'CE', 'DR', 'DZ', 'IC', etc. for a total of 8 product types (this expanded from the original 6).
I've expanded the search string as follows:
Like "*" & [CC] & "*" Or Like "*" & [CE] & "*" Or Like "*" & [DR] & "*" Or Like "*" & [DZ] & "*" Or Like "*" & [IC] & "*" Or Like "*" & [QF] & "*" Or Like "*" & [QP] & "*" Or Like "*" & [QS] & "*".
The result is a list of 437 products beginning with CC or CE from a table of 9900+.
What is wrong with the criteria?
Any assistance would be appreciated.
Thank you,