Grouping

Hi, i started to use FastReport today..i have 2.5 version//

My problem is grouping records by fields..Let's say a have:

CODE SALESMANS BUYERS
0001 name1 name2
0001 name11 name22
0002 xxxx yyyyy

i want to group this record set in order to get:

CODE SALESMANS BUYERS
0001 name1,name11 name2,name22
0002 xxxx yyyyy

hope that u understand,thanx!!

Comments

  • edited 4:27PM
    Just make a second tabel and read each record of First table according to CODE field. The second table may have SALESMANS and BUYERS field as varchar(200) depend on how many Salesman in that group.

    Another way is using Cube. Take a look at www.pivotcube.com .

Leave a Comment