Hi all...
I have a list of names...
Brian P. Bennett
Mario Puzo
Hugh E. Hefner
Lucy Arnez
I have used the following code to concatenate them...
WhilePrintingRecords;
Shared StringVar ConCat;
If ConCat = "" then ConCat := {table.field}
else if not({table.field} in ConCat) then ConCat := ConCat + ", " + {table.field}
...and I have the 'Can Grow' checked on the display field so now I get:
Brian P. Bennett, Mario Puzo, Hugh
E. Hefner, Lucy Arnez
Is there a way I can make the report keep Hugh E. Hefner together?
I'm using CRXI, if that matters...
I have a list of names...
Brian P. Bennett
Mario Puzo
Hugh E. Hefner
Lucy Arnez
I have used the following code to concatenate them...
WhilePrintingRecords;
Shared StringVar ConCat;
If ConCat = "" then ConCat := {table.field}
else if not({table.field} in ConCat) then ConCat := ConCat + ", " + {table.field}
...and I have the 'Can Grow' checked on the display field so now I get:
Brian P. Bennett, Mario Puzo, Hugh
E. Hefner, Lucy Arnez
Is there a way I can make the report keep Hugh E. Hefner together?
I'm using CRXI, if that matters...