I currently have two tables. The MASTER TABLE has a list of accounts and quantities ordered by effective date. The SECOND table has additional quantities that need to be merged in by account #, however,the quantities need to be merged on where the earliest dated account row is. For example,
MASTER TABLE
Account # Qty Eff Date
123 25 6/1/07
123 25 6/15/07
TABLE 2
Account # Qty
123 50
Currently, if i try to add a new field in the MASTER table, if includes the quantity of 50 twice, from TABLE 2, since the account #'s are the same (see below)
MAKE TABLE QUERY RESULTS
Account # Qty Eff date Table 2 Qty
123 25 6/1/07 50
123 25 6/15/04 50
The query should only spit back the following results, any help?
MAKE TABLE QUERY RESULTS
Account # Qty Eff date Table 2 Qty
123 25 6/1/07 50
123 25 6/15/04 <NULL>
MASTER TABLE
Account # Qty Eff Date
123 25 6/1/07
123 25 6/15/07
TABLE 2
Account # Qty
123 50
Currently, if i try to add a new field in the MASTER table, if includes the quantity of 50 twice, from TABLE 2, since the account #'s are the same (see below)
MAKE TABLE QUERY RESULTS
Account # Qty Eff date Table 2 Qty
123 25 6/1/07 50
123 25 6/15/04 50
The query should only spit back the following results, any help?
MAKE TABLE QUERY RESULTS
Account # Qty Eff date Table 2 Qty
123 25 6/1/07 50
123 25 6/15/04 <NULL>