cfriedberg2
Programmer
I have a report that has records with POXXXX and SOXXXX for which I want to accumulate totals. I am doing this by suppressing the details and displaying only the Group Footer. XXXX in both of these fields determines the group. There may be several detail records that are summarized. I can get the POXXXX or the SOXXXX to print if it is the last detail record in the group.
I have tried the WhilePrintingRecords suggestion in the User Guide but I am not successful 100% of the time.
Reset formula
WhilePrintingRecords;
stringVar PO:= ""
Detail formula
WhilePrintingRecords;
stringVar PO:= If Mid({Command.trans},1,1) = "P" then {Command.trans}
Display formula
WhilePrintingRecords;
stringVar PO
It seems as though I cannot maintain the value I need.
Help please,
Carolyn
I have tried the WhilePrintingRecords suggestion in the User Guide but I am not successful 100% of the time.
Reset formula
WhilePrintingRecords;
stringVar PO:= ""
Detail formula
WhilePrintingRecords;
stringVar PO:= If Mid({Command.trans},1,1) = "P" then {Command.trans}
Display formula
WhilePrintingRecords;
stringVar PO
It seems as though I cannot maintain the value I need.
Help please,
Carolyn