If they are separate records, you will have to use a variables to concatenate strings across multiple records and then display the final result in the group footer.
It is the same as doing a running total that changes on groups: you will need three formulas.
Formula: Reset. Place this in the group header
whileprintingrecords;
global stringvar temp := '';
Formula: Join. Place this in the details section and suppress it.
whileprintingrecords;
global stringvar temp := temp & ' ' & <data in this record>;
Formula: Display. Place this in the group footer.
whileprintingrecords;
global stringvar temp;
You may only want to display the final concatenated string, so you would suppress the detail section.
Edited by Keikoku - 14 Mar 2011 at 9:28am