Reputation: 81
How can i display all the data of certain column while grouping in crystal report? It only display the last record of that column field. Is there any way of displaying all the records?
Upvotes: 0
Views: 2462
Reputation: 6027
Place a formula in the group header: shared stringVar blah := ''
Place a formula in the details section: shared stringVar blah; blah := blah + ',' + {table.field}
Place a formula in the group footer: shared stringVar blah
Sometimes you need to add a line above each of the formulas whileprintingrecords;
Upvotes: 1