CR XI
I have a database that contains two tables and each table contains two only text fields.
tbl_Vendor contains the fileds {tbl_V.Serial} and {tbl_V.Part}
tbl_Inventory contains the fields {tbl_I.Serial} and {tbl_I.Part}
The serial and part numbers within these tables should be an exact match set, however, due to human error over time (typos, etc.) they are not.
I am trying to design a report that will only display those records where either the serial numbers or the part numbers are not an exact match.
Perhaps a selection criteria something like :
({tbl_V.Serial} <> {tbl_I.Serial}) OR ({tbl_V.Part} <> {tbl_I.Part})
or perhaps a formula to display, to the left of the 4 data files, that would flag the unmatched records like :
If ({tbl_V.Serial} <> {tbl_I.Serial}) OR ({tbl_V.Part} <> {tbl_I.Part}) then " "Unmatched Record"
However, at the base level I am not sure how the two tables should be joined to start with...
Any suggestions welcomed... Thanks
I have a database that contains two tables and each table contains two only text fields.
tbl_Vendor contains the fileds {tbl_V.Serial} and {tbl_V.Part}
tbl_Inventory contains the fields {tbl_I.Serial} and {tbl_I.Part}
The serial and part numbers within these tables should be an exact match set, however, due to human error over time (typos, etc.) they are not.
I am trying to design a report that will only display those records where either the serial numbers or the part numbers are not an exact match.
Perhaps a selection criteria something like :
({tbl_V.Serial} <> {tbl_I.Serial}) OR ({tbl_V.Part} <> {tbl_I.Part})
or perhaps a formula to display, to the left of the 4 data files, that would flag the unmatched records like :
If ({tbl_V.Serial} <> {tbl_I.Serial}) OR ({tbl_V.Part} <> {tbl_I.Part}) then " "Unmatched Record"
However, at the base level I am not sure how the two tables should be joined to start with...
Any suggestions welcomed... Thanks