0

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?

4

1 に答える 1

1

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;

于 2012-12-07T15:24:42.287 に答える