greyknight17
Technical User
Hi,
I'm trying to get a list of patients who had the same identical exams performed. My report is grouped by date and patient name. I tried using the following suppression formula in the details section but it doesn't return the results I expected:
The details section contains the patient name, exam code and other fields. I just want the report to return the details if a patient has more than 1 identical exam done.
Thanks.
I'm trying to get a list of patients who had the same identical exams performed. My report is grouped by date and patient name. I tried using the following suppression formula in the details section but it doesn't return the results I expected:
Code:
({Table.PatientName} <> next({Table.PatientName}) and {Table.ExamCode} <> next({Table.ExamCode})) or
({Table.PatientName} <> previous({Table.PatientName}) and {Table.ExamCode} <> previous({Table.ExamCode}))
The details section contains the patient name, exam code and other fields. I just want the report to return the details if a patient has more than 1 identical exam done.
Thanks.