Hello all,
I am using Crystal 10. I have two tables and need to exclude data in my report based on where IDs match between the two tables.
TABLEA - shows all purchase orders
TABLEB - contains purchase orders I need to exclude from the larger set of data
I am excluding data where PO_ID and RELEASE_ID in TABLE B show up in TABLE A.
PO_ID and RELEASE_ID are also my primary key linking fields.
I have two issues.
(1) TABLE LINKING: I am not positive I've linked the tables correctly, but I am currently linking them through an inner join, not enforced and "=". I had initially thought it might be effective to use the "!=" on inner join, but it did not seem to product any record results which I know can't be correct.
(2) RECORD SELECTION CRITERIA: I tried to add the following to record selection criteria it did not give the desired effect:
{TABLEA.PO_ID} <> {TABLEB.PO_ID} and
{TABLEA.RELEASE_ID} <> {TABLEB.RELEASE_ID}
Any suggestions on record selection criteria to exclude IDs in TABLEB would be most helpful.
Thank you all!
I am using Crystal 10. I have two tables and need to exclude data in my report based on where IDs match between the two tables.
TABLEA - shows all purchase orders
TABLEB - contains purchase orders I need to exclude from the larger set of data
I am excluding data where PO_ID and RELEASE_ID in TABLE B show up in TABLE A.
PO_ID and RELEASE_ID are also my primary key linking fields.
I have two issues.
(1) TABLE LINKING: I am not positive I've linked the tables correctly, but I am currently linking them through an inner join, not enforced and "=". I had initially thought it might be effective to use the "!=" on inner join, but it did not seem to product any record results which I know can't be correct.
(2) RECORD SELECTION CRITERIA: I tried to add the following to record selection criteria it did not give the desired effect:
{TABLEA.PO_ID} <> {TABLEB.PO_ID} and
{TABLEA.RELEASE_ID} <> {TABLEB.RELEASE_ID}
Any suggestions on record selection criteria to exclude IDs in TABLEB would be most helpful.
Thank you all!