Hi, I'm fairly new to access so please forgive my inexperience.
I have two tables (A and B) from different data sources, and each table has it's own primary key (Access assigned autonumber). Records are matched between the two tables based on certain fields, but occasionally there are matching problems. For records that don't match between tables A and B, a query suggests potential matches (it shows a list of potential primary keys pairings in a one-to-one manner). I need to review the potential matches manually and update table A or B if appropriate. What I would like to do is create an updateable query that displays information from tables A and B side-by-side for all of the given pairings.
Example:
TABLE A:
1 FFF RRR
2 CCC PPP
3 III RRR
TABLE B:
9 TTT EEE
10 JJJ UUU
11 HHH WWW
PAIRING QUERY:
1 10
3 11
**********************
TARGET OUTCOME QUERY:
1 FFF RRR 10 JJJ UUU
3 III RRR 11 HHH WWW
**********************
The desired result is a select query displaying the merged records, where I can compare the data side-by-side and update records accordingly.
Any suggestions are welcome! Every way I've tried to do this so far has resulted in the "Recordset not updateable" error message. Thanks!
I have two tables (A and B) from different data sources, and each table has it's own primary key (Access assigned autonumber). Records are matched between the two tables based on certain fields, but occasionally there are matching problems. For records that don't match between tables A and B, a query suggests potential matches (it shows a list of potential primary keys pairings in a one-to-one manner). I need to review the potential matches manually and update table A or B if appropriate. What I would like to do is create an updateable query that displays information from tables A and B side-by-side for all of the given pairings.
Example:
TABLE A:
1 FFF RRR
2 CCC PPP
3 III RRR
TABLE B:
9 TTT EEE
10 JJJ UUU
11 HHH WWW
PAIRING QUERY:
1 10
3 11
**********************
TARGET OUTCOME QUERY:
1 FFF RRR 10 JJJ UUU
3 III RRR 11 HHH WWW
**********************
The desired result is a select query displaying the merged records, where I can compare the data side-by-side and update records accordingly.
Any suggestions are welcome! Every way I've tried to do this so far has resulted in the "Recordset not updateable" error message. Thanks!