I was helped in another thread in relation to this problem, but ive tweaked my needs and now im not sure how to resolve...
I currently have two tables. The MASTER TABLE has a list of accounts and quantities. The SECOND table has additional quantities that need to be merged in by account #, however,the quantities need to add in a new row based on account #, BUT only update one of the rows, not both. For example,
MASTER TABLE
Account # Qty
123 25
123 25
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 Table 2 Qty
123 25 50
123 25 50
The query should only spit back the following results, any help?
MAKE TABLE QUERY RESULTS
Account # Qty Table 2 Qty
123 25 50
123 25 <NULL>
I currently have two tables. The MASTER TABLE has a list of accounts and quantities. The SECOND table has additional quantities that need to be merged in by account #, however,the quantities need to add in a new row based on account #, BUT only update one of the rows, not both. For example,
MASTER TABLE
Account # Qty
123 25
123 25
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 Table 2 Qty
123 25 50
123 25 50
The query should only spit back the following results, any help?
MAKE TABLE QUERY RESULTS
Account # Qty Table 2 Qty
123 25 50
123 25 <NULL>