Hi there!
Using Crystal 10, I've got a report where I need to combine many records from the details into one field in the group header. The value of the fields in the GH needs to reset for each group.
For example, if the 1st group contains "apples", and the second group contains "oranges" then the field in the header of the first group should be "apples", and same field for the second group should be "oranges".
My problem is, for some reason the field in the header is not resetting after each group, and is adding to itself. So I'm getting "apples" in the first group header, and "apples oranges" in the second group header.
Here is the pertinant code:
Group header #1
Formula name @case#
Group footer #1
Formula name @reset
I've got a feeling it has to do with evaluation time of one or both of the fields, but I've tried what I think are all the combinations - except, of course, the right one! Any tips you could give me would be really very apprecaited!
Using Crystal 10, I've got a report where I need to combine many records from the details into one field in the group header. The value of the fields in the GH needs to reset for each group.
For example, if the 1st group contains "apples", and the second group contains "oranges" then the field in the header of the first group should be "apples", and same field for the second group should be "oranges".
My problem is, for some reason the field in the header is not resetting after each group, and is adding to itself. So I'm getting "apples" in the first group header, and "apples oranges" in the second group header.
Here is the pertinant code:
Group header #1
Formula name @case#
Code:
[green]//GH1[/green]
[green]//Formula @Case#[/green]
[green]//[/green]
[blue]global stringvar[/blue] Allcase;
Allcase:=allcase&[blue]chr[/blue](12)&[blue]totext [/blue]{Table.Fieldname},0,"")
Group footer #1
Formula name @reset
Code:
[green]//GF1[/green]
[green]//Formula @reset[/green]
[blue]global stringvar[/blue] Allcase;
Allcase:="";
I've got a feeling it has to do with evaluation time of one or both of the fields, but I've tried what I think are all the combinations - except, of course, the right one! Any tips you could give me would be really very apprecaited!