Hello,
How would I be able to add a field that tells me what caused the join to fail? I'm doing a join on 4 fields (CompanyID, DeptID, JobID, GroupID), and from the left results, I want to be able to identify which of the 4 fields (or if it was all 4 fields) did not match. For example record 1 did not match on CompanyID and DeptID, record 2 did not match on GroupID, record 3 did not match on any field, etc. My goal is to do a union with the left and middle results to have the full population again but to be able to identify which records all matched and which ones did not match and why they didn't match. Thanks.