I have 2 tables with a list of part numbers in each.
Table 1 (over 1.4m records) is my master parts number table with part number as a field and a standard cost as the other field.
Table 2 is a list of part numbers (only a couple thousand) that will change monthly. These part numbers are listed in table 1 and have standard cost values.
I'm trying to run a query to basically lookup the part number from Table 2 and return the standard cost value found in Table 1. This query is working great for part numbers containing only number (ex. 2074849). The query is not returning standard costs for parts containing numbers AND text (ex. 1A0621). Both Table 1 and Table 2 have primary keys set to the part number, and have a relationship setup between the part number. The data type on both tables is set to "Text".
How can I get the part numbers containing both numbers and letters/text to return my standard costs?
P.S. If I do a "find" in my Table 1 I can find these parts and see their standard costs, so I know they are in there and are correct.
Thanks!