I want to concatenate the values of one attribute in a group of records.
Input
customer purchased
0000001 shoes
0000001 belt
0022222 pants
0022222 jacket
The output I want is
customer accumulated
0000001 shoes belt
0022222 pants jacket
The representative creater offers best and second to access records in a group, or aggregations like avg, sum. This question asks how to build an expression in a group to concatenate the the values.
I looked at the Record Descriptor steps as maybe offering a solution but the help is very thin.