John, thank you for the reply.
I think your right, and I'm finding out that what I'm trying to do is not
going to be easy. Here is my problem or situation:
I have 4 tables. 1 table contains Corporate information (name, address,
contacts, etc). Table 2 contains the retail locations for each corporation.
Example: Charming Shoppes may contain 250 Fashion Bug locations. Each
location has the store name, address, phone, etc. My third table has vendor
information. There are over 13500 vendors listed in the table from all over
the country and more are added daily. The forth table contains WorkOrders
that are created for any store that calls in with a problem. The WorkOrder
contains all relevant information including some information from the
Corporate table, Location table, vendor table and a whole lot of new
information, (dates, times, Id's, etc.). There are over 100,000 WorkOrders
and it grows at least 70+ a day.
My biggest problem is finding information in these tables. I know Access
includes some tools, but they aren't the most user friendly. I've been trying
to create my own search tools, but as I'm not overly experianced with VBA,
I've run into snags that I have problems working around.
I'm trying to do something like filter by form, but for the sake of the
people who will be using the database and don't know the first thing about
access and queries etc., I'd like to have a button that says "Find Record".
Person clicks it and is given a blank form in which they can fill in any
information that they want to narrow their search. For fields that the user
will enter multiple criteria, have it seperated by commas. The person then
clicks "OK" and the underlying code would then take all the information
entered into the form, find the commas, turn them into "AND" and then build
the Where clause.
I actually have most of that done. The only problems I'm having are: a way
to find the commas and turn them into "AND" and the use of wildcards,
example: If one wants to find all records with a zipcode that start with 193.
Right now, whenever I type in anything that isn't exactly the same as it is
in the table, I get a blank record presumably because it can't find anything
that matches the criteria.
I don't know if this helps explain anything at all or if you can even offer
some ideas, but anything will help. Thank you very much.