This post refers back to thread766-1436069.
I'm using CR 9.0.
I have a field that is multi-select and stores the codes separated by a comma.
So, for example the field has the following:
301,302,303
There is a lookup table that stores the descriptions for those codes that I need to display in my report.
I can successfully display the description if the field only has one value but if it's got more than one it displays blank.
Here's what I did in my report (again refer to thread766-1436069)
Insert a subreport that uses the lookup table. Link it to the main report by using the multiselect field from the main report as the linking field. Then go into the subreport->report->selection formula->record and change it to read:
{lookup.code} = split({table.multiselectfield},",")
Then create two formulas in the subreport:
//{@accum} to be placed in the detail section:
whileprintingrecords;
stringvar x := x + {lookup.description}+",";
//{@display} to be placed in the subreport footer:
whileprintingrecords;
stringvar x;
if len(x) > 1 then
left(x,len(x)-1)
Suppress all subreport sections but the report footer and place the sub in the detail section of the main report.
Any ideas?
I'm using CR 9.0.
I have a field that is multi-select and stores the codes separated by a comma.
So, for example the field has the following:
301,302,303
There is a lookup table that stores the descriptions for those codes that I need to display in my report.
I can successfully display the description if the field only has one value but if it's got more than one it displays blank.
Here's what I did in my report (again refer to thread766-1436069)
Insert a subreport that uses the lookup table. Link it to the main report by using the multiselect field from the main report as the linking field. Then go into the subreport->report->selection formula->record and change it to read:
{lookup.code} = split({table.multiselectfield},",")
Then create two formulas in the subreport:
//{@accum} to be placed in the detail section:
whileprintingrecords;
stringvar x := x + {lookup.description}+",";
//{@display} to be placed in the subreport footer:
whileprintingrecords;
stringvar x;
if len(x) > 1 then
left(x,len(x)-1)
Suppress all subreport sections but the report footer and place the sub in the detail section of the main report.
Any ideas?