wilekoyote76
MIS
has ideas on creating subreport with passing parameters to subreports.
Is there another way to pass ?startdate and ?enddate to a subreport or maybe its better to pass a selection into a subreport. I'm trying to filter "exceptions" to rules i've defined for standards into a subreport that will be reviewed.
with null values set to default for the report options...using this selection formula.
(
{CONTACT2.UCLMNO} > 0 and
(
(
{CONTACT2.UPYMTDATE} >= {?begindate} and
{CONTACT2.UPYMTDATE} <= {?enddate}
)
OR
(
{CONTACT2.URIDATPAID} >= {?begindate} and
{CONTACT2.URIDATPAID} <= {?enddate}
)
OR
(
{CONTACT2.UIIDATPAID} >= {?begindate} and
{CONTACT2.UIIDATPAID} <= {?enddate}
)
OR
(
{CONTACT2.URODATPAID} >= {?begindate} and
{CONTACT2.URODATPAID} <= {?enddate}
)
)
)
I am wanting to get anything within the following 3 fields into the subreport: {CONTACT2.URIDATPAID} {CONTACT2.URODATPAID} {CONTACT2.UIIDATPAID}
Is there another way to pass ?startdate and ?enddate to a subreport or maybe its better to pass a selection into a subreport. I'm trying to filter "exceptions" to rules i've defined for standards into a subreport that will be reviewed.
with null values set to default for the report options...using this selection formula.
(
{CONTACT2.UCLMNO} > 0 and
(
(
{CONTACT2.UPYMTDATE} >= {?begindate} and
{CONTACT2.UPYMTDATE} <= {?enddate}
)
OR
(
{CONTACT2.URIDATPAID} >= {?begindate} and
{CONTACT2.URIDATPAID} <= {?enddate}
)
OR
(
{CONTACT2.UIIDATPAID} >= {?begindate} and
{CONTACT2.UIIDATPAID} <= {?enddate}
)
OR
(
{CONTACT2.URODATPAID} >= {?begindate} and
{CONTACT2.URODATPAID} <= {?enddate}
)
)
)
I am wanting to get anything within the following 3 fields into the subreport: {CONTACT2.URIDATPAID} {CONTACT2.URODATPAID} {CONTACT2.UIIDATPAID}