I am using 'holding variables' to compute and display multiple summaries at the end of the report and don't know how to order them the way I want.
I want:
regular total: 123,457.00
bccp total: 1,230.00
mfp total: 3,210.00
total: 127,697.00
but the output report always displays as
mfp total: 3,210.00
bccp total: 1,230.00
regular total: 123,457.00
total: 127,697.00
My code:
break after regular/sumarize;
compute after regular;
ffp_type = 'regular total: ';
reimb.sum = regsum;
endcomp;
break after bccp/sumarize;
compute after bccp;
ffp_type = 'bccp total: ';
reimb.sum = bccpsum;
endcomp;
break after mfp/sumarize;
compute after mfp;
ffp_type = 'mfp total: ';
reimb.sum = mfpsum;
endcomp;
rbreak after /summarize;
compute after;
ffp_type = 'total: ';
reimb.sum = grandtot;
endcomp;
Can you help me?
Thanks a lot!
Message was edited by: odmhx