Symptom
- I have 2 columns
- Game Player
Basketball A
Soccer B
Hockey C
Soccer D
Basketball E
Soccer F
- Game Player
- Need to display these records in 3 text boxes in group footer which would display as
- Basketball A, E
- Soccer B, D,F
- Hockey C and so on.
Environment
- Crystal Reports 2008
Resolution
- Create a group game.
- Create a string manual running total.
- Put formula 1 in the Details section.
- whileprintingrecords;
stringvar teams:= teams + {yourteamfield} + ", ";
- whileprintingrecords;
- Put formula 2 in the team group header
- whileprintingrecords;
stringvar teams:= "";
- whileprintingrecords;
- Put formula 3 in your group footer
- whileprintingrecords;
stringvar teams;
numbervar tl:= length(teams) - 2;
if tl > 0 then teams1 to tl;
- whileprintingrecords;
Keywords
Formula, String running total , KBA , BI-RA-CR , Crystal Reports designer or Business View Manager , How To
Product
Crystal Reports 2008 V1