RCAIVANO69
Technical User
using CR 8.5
GH1 (patient_id)sorted by service date
using the following suppression to only show exams repeated within a specific interval
(
(
onfirstrecord or
{PATIENT_IDENTIFIERS.IDENTIFIER} <> previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = next({PATIENT_IDENTIFIERS.IDENTIFIER})
) and
datediff("d", {EXAMS.SERVICE_DT},next({EXAMS.SERVICE_DT})) > {?Interval}
) or
(
{PATIENT_IDENTIFIERS.IDENTIFIER} = previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = next({PATIENT_IDENTIFIERS.IDENTIFIER}) and
datediff("d", PREVIOUS({EXAMS.SERVICE_DT}),{EXAMS.SERVICE_DT}) > {?Interval} and
datediff("d", {EXAMS.SERVICE_DT},next({EXAMS.SERVICE_DT})) > {?Interval}
) or
(
(
onlastrecord or
{PATIENT_IDENTIFIERS.IDENTIFIER} <> next({PATIENT_IDENTIFIERS.IDENTIFIER})
) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
datediff("d", PREVIOUS({EXAMS.SERVICE_DT}),{EXAMS.SERVICE_DT}) > {?Interval}
)
However, there are numerous entries where the header and footer is visible but there are no detail entries
how can i hide if detail section empty
GH1 (patient_id)sorted by service date
using the following suppression to only show exams repeated within a specific interval
(
(
onfirstrecord or
{PATIENT_IDENTIFIERS.IDENTIFIER} <> previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = next({PATIENT_IDENTIFIERS.IDENTIFIER})
) and
datediff("d", {EXAMS.SERVICE_DT},next({EXAMS.SERVICE_DT})) > {?Interval}
) or
(
{PATIENT_IDENTIFIERS.IDENTIFIER} = previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = next({PATIENT_IDENTIFIERS.IDENTIFIER}) and
datediff("d", PREVIOUS({EXAMS.SERVICE_DT}),{EXAMS.SERVICE_DT}) > {?Interval} and
datediff("d", {EXAMS.SERVICE_DT},next({EXAMS.SERVICE_DT})) > {?Interval}
) or
(
(
onlastrecord or
{PATIENT_IDENTIFIERS.IDENTIFIER} <> next({PATIENT_IDENTIFIERS.IDENTIFIER})
) and
{PATIENT_IDENTIFIERS.IDENTIFIER} = previous({PATIENT_IDENTIFIERS.IDENTIFIER}) and
datediff("d", PREVIOUS({EXAMS.SERVICE_DT}),{EXAMS.SERVICE_DT}) > {?Interval}
)
However, there are numerous entries where the header and footer is visible but there are no detail entries
how can i hide if detail section empty