Sujan
Sujan

Reputation: 81

Only Display last data while grouping in crystal report

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

Answers (1)

Lee Tickett
Lee Tickett

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

Related Questions