firstly thank you for previous help
i used
//{@reset} for the group header:
whileprintingrecords;
stringvar colors := "";
//{@colors} for the detail section:
whileprintingrecords;
stringvar colors := colors + {table.color} + ", ";
//{@displaycolors} for the group footer section:
whileprintingrecords;
stringvar colors;
left(colors, len(colors)-2);
but find this gives a string of all the colors is there a way i can only return values relative to the group header
eg
9001 blue
9001 red
9002 pink
9002 green
would show
9001 blue,red
9002 pink,green
the above is grouped by the number
trust i have explained myself clearly
Thanks in advance
Matt
i used
//{@reset} for the group header:
whileprintingrecords;
stringvar colors := "";
//{@colors} for the detail section:
whileprintingrecords;
stringvar colors := colors + {table.color} + ", ";
//{@displaycolors} for the group footer section:
whileprintingrecords;
stringvar colors;
left(colors, len(colors)-2);
but find this gives a string of all the colors is there a way i can only return values relative to the group header
eg
9001 blue
9001 red
9002 pink
9002 green
would show
9001 blue,red
9002 pink,green
the above is grouped by the number
trust i have explained myself clearly
Thanks in advance
Matt