I found two formula's that allow you to concatenate detail records and I tried using it on group records and it works... Except it doesn't reset for new records; it just continues for ALL records. When using this to concatenate group records, does anyone know how I can reset it to start over on each group change?
//@Concate. placed in the group header
WHILEPRINTINGRECORDS;
STRINGVAR CONCAT;
CONCAT:= CONCAT + TRIM (TOTEXT(({jinames.name_id})))+" , "
//concatdisplay. placed in the the group footer
WHILEPRINTINGRECORDS;
STRINGVAR CONCAT;
LEFT(CONCAT,LENGTH(CONCAT)-2)
Thanks for any and all help.
Kim
//@Concate. placed in the group header
WHILEPRINTINGRECORDS;
STRINGVAR CONCAT;
CONCAT:= CONCAT + TRIM (TOTEXT(({jinames.name_id})))+" , "
//concatdisplay. placed in the the group footer
WHILEPRINTINGRECORDS;
STRINGVAR CONCAT;
LEFT(CONCAT,LENGTH(CONCAT)-2)
Thanks for any and all help.
Kim