The goal of the project is to achieve very high accuracy for our database from our data entry operators. Two different operators would perform data entry on our records into 2 different tables and then a query would compare the 2 tables to identify unmatched fields. Our Quality Control Dept would get the report and resolve the unmathed records. Once both tables are 100% matched, the report would show no unmatched records.<br><br>These 2 tables have the same structure and identical field names. The data for Table #1 was keyed in by Operator #1 and the data in Table #2 was entered by Operator #2. The Ukey field is a unique key that allows the two tables to be joined like a persons Social Security Number. It is required and never null. The Name & Addr is required BUT the Phone may be null.<br><br>The number of records in the tables may not be the same because an operator may have accidently skipped a record. Therefore, we can start with Table#1 being the master. <br><br>Table_Op#1<br>Ukey, Name, Addr, Phone, EnteredBy<br>Table_Op#2<br>UKey, Name, Addr, Phone, EnteredBy<br><br>Please help me with the Query and report that would show which fields are unmathched.