Im using Crystal Reports,and I have an output like this:
NumberId ART_No InkColor
------------------------------------------
0010 23003 BLUE
0010 23003 RED
0010 23003 GREEN
0013 23004 ORANGE
0013 23004 PINK
0013 23004 WHITE
0015 23007 GREEN
0015 23007 PINK
Is there any possible way how can I make the output (in Crystal Reports) be like this even not using SQL Script:
NumberId ART_No InkColor
------------------------------------------
0010 23003 BLUE, RED, GREEN
0013 23004 ORANGE, PINK, WHITE
0015 23007 GREEN, PINK
Thanks