D
Dan @BCBS
I am trying to get a report to open only if one of three values are true.
This is my query:
SELECT t_Contact.ICNNO, t_Contact.Incomplete, t_Contact.Incorrect,
t_Contact.Missing, t_Contact.Comments, t_Contact.CSR, t_Contact.CSRMgr,
t_Contact.CSRRACF
FROM tblTrackingData INNER JOIN t_Contact ON tblTrackingData.ICNNO =
t_Contact.ICNNO;
How can I make the report only print records were "Incomplete, Incorrect or
Missing" has been checked?
Suggestions?
This is my query:
SELECT t_Contact.ICNNO, t_Contact.Incomplete, t_Contact.Incorrect,
t_Contact.Missing, t_Contact.Comments, t_Contact.CSR, t_Contact.CSRMgr,
t_Contact.CSRRACF
FROM tblTrackingData INNER JOIN t_Contact ON tblTrackingData.ICNNO =
t_Contact.ICNNO;
How can I make the report only print records were "Incomplete, Incorrect or
Missing" has been checked?
Suggestions?