CR XI and MS SQL 2000
I’m trying to create a report that shows the Transmit Status for each REPORT for each EXAM. Some EXAMs can have more than one report, and there may or may not be a ‘status’ for each of them.
There is a tbExams table that contains an ExamID.
There is a tbExamReport table that contains the ExamID as well as an ExamReportID (that is 0 for the first report, 1 for the second, etc)
NOW, the Transmit Status is in another table tbReportQueue. This table contains the ExamID as well as the ExamReportID.
I’ve tried creating TWO links from my tbExamReport table to the tbReportQueue table, but they seem to use OR logic instead of AND. It seems to only match on the ExamID, and I get the same results for every Report. In some cases, there is NO entry for the ExamID/ReportID combination (that’s what I’m looking to report on!!!)
I tried linking the tbExams.ExamID and tbExamReport.ExamReportID to the tbReportQueue also—no luck.
Hope I described this accurately enough. I can provide any more info if needed. Thanks in advance for your help!
--Scott
I’m trying to create a report that shows the Transmit Status for each REPORT for each EXAM. Some EXAMs can have more than one report, and there may or may not be a ‘status’ for each of them.
There is a tbExams table that contains an ExamID.
There is a tbExamReport table that contains the ExamID as well as an ExamReportID (that is 0 for the first report, 1 for the second, etc)
NOW, the Transmit Status is in another table tbReportQueue. This table contains the ExamID as well as the ExamReportID.
I’ve tried creating TWO links from my tbExamReport table to the tbReportQueue table, but they seem to use OR logic instead of AND. It seems to only match on the ExamID, and I get the same results for every Report. In some cases, there is NO entry for the ExamID/ReportID combination (that’s what I’m looking to report on!!!)
I tried linking the tbExams.ExamID and tbExamReport.ExamReportID to the tbReportQueue also—no luck.
Hope I described this accurately enough. I can provide any more info if needed. Thanks in advance for your help!
--Scott