Hello!
I have a database that is full of parts and their data (part number, manufacturer, manufacturer part number, description, price)
And I need to create a form/query that filters them based on inputs on the form.
I have already created one of such combos, and it works well because it was standard and easy to do.
This one, however, is mainly used for comparisons.
I need to be able to look up multiple distinct part numbers, or a manufacturer, or a specific part type.
For example, rely100 and rely128 are both relay parts, and should come up along with all other RELY parts when I type RELY into one of the part number fields.
But if I type rely100 into one search field and rely128 into another, I want them both to come up so that I can compare the two.
Basically, I want everything to be an "or" statement.
The issue I'm having is that with the format I used for partial searches before (Like "*" & [Forms]![Parts_Search_Form]![Input_MFG] & "*")
will always return all parts if used in an or statement.
Is there something that allows for ambiguous input without returning all values? Like a "contains" statement?
Any help is greatly appreciated, thanks!