I have a crystal xi report with a main report and lots of subreports.
I have linked all the sub reports to 2 parameters which works perfectly well for individual matches of criteria, however I now need to be able to chose multiple criteria for one of the parameters which I can set up but it just doesn't pass the details to the subreports.
This is what I have currently in my main report record selection
{Communication.Comm_Status} = "Complete" and
isnull ({Communication.Comm_Deleted}) and
{Communication.Comm_Action} = "PhoneOut" and
{Communication.comm_Result} in ["0", "1", "2"] and
not ({Communication.Comm_UpdatedBy} in [30, 33, 59]) and
{Communication.Comm_DateTime} in LastFullWeek and
{Territories.Terr_Caption} = {?Client} and
{Company.comp_campaign} = {?Campaign}
and this is what I have in my subreports record selection
isnull ({Communication.Comm_Deleted}) and
{Communication.Comm_Status} = "Complete" and
{Territories.Terr_Caption} = {?Pm-Territories.Terr_Caption} and
{Territories.Terr_Caption} = {?Pm-Territories.Terr_Caption} and
{Communication.comm_Result} in ["0", "1", "2", "3", "4"] and
not ({Communication.Comm_UpdatedBy} in [30, 33, 59]) and
{Communication.Comm_DateTime} in LastFullWeek and
{Company.comp_campaign} = {?Pm-Company.comp_campaign}
I suppose what I would ideally like is '=' parameter1 and 'contains' in parameter2
I have tried to search for resolutions, but I don't know what terms I should be looking for join; multi-value parameter or something else?
Thanks in advance for any guidance.