I have a report with a subreport. The subreport selects records based on a parameters using "select expert"
{SAMPLE_DTL.PAR_CODE} = 244.00 and
{ORGANIZATION.ORG_NAME} = {?Pm-ORGANIZATION.ORG_NAME} and
{SAMPLE.SAMPLE_START_DATETIME} >= {?Pm-?START_DATE} and
{SAMPLE.SAMPLE_START_DATETIME} <= {?Pm-?END_DATE}
The main report "using select expert"
{ORGANIZATION.STATUS_IND} = "A" and
IF {?TYPE} = "ALL" THEN {ORGANIZATION.ORG_TYPE} in ["CIU", "NSU", "SIU"] ELSE {ORGANIZATION.ORG_TYPE}={?TYPE} and
{PERMIT_GEN.ACTIVE_IND} = "A"
My problem is I have an ORGANIZATION.ORG_TYPE that is in ["CIU", "NSU", "SIU"] but has no {SAMPLE_DTL.PAR_CODE} detail associated with it yet but I want to display it it the main report anyway. Right now it looks like it only displays data that has {SAMPLE_DTL.PAR_CODE} = 244.00 associated with it.
Thanks for your help
Kris