For example I have 100 customer numbers on a spreadsheet in excel from some report I've run.
In my access database there exists tables that have the customer number as one of their fields and other information that I need..
I need to know what the normal process is for building that query with out a mile long "or" statement in the customer # field that would pull the info I need for just these customer numbers.
So where I would normally make a query and include all the tables and link them up and I would select "customer number" and from Table 1 "address", "phone" and from Table 2 "balance" and so on, and I would pull all the customer information for all customers I just want query this info for only the customer numbers that I have listed on my spreadsheet.
I could create a Temporary Table in the database and upload the 100 customer numbers in it and then link it query design. Then I would change the join to show all the records that exist in the temporary table and only those that match in the other tables.
If that process would work is that the normal method or best practice, keeping in mind I know so little visual basic programming that I wouldn't consider that an option unless it was the only way.