GTT : Purchased Total Amount (on GH) GMT : Purchased Total Quantity (on GH) Sum ({@Ç?k??-Miktar}, {xstok_hareketRECORD.stok_kod}) : Sold Total Quantity (on GH)
Well, that isn't really true. You CAN summarize calculations, you just can't INSERT summaries on them.
You didn't say what the desired summary was or at what level, but if you want a grand total of these calculations, use a variable. Create two formulas:
//{@accum} to be placed in the group section containing the calculation:
whileprintingrecords;
numbervar sumx := sumx + {@yourcalculation};
//{@display} to be placed in the report footer (group footer if summary is for a higher order group):
whileprintingrecords;
numbervar sumx;
If you want the result displayed in some higher order group, you need a reset formula in that group header:
whileprintingrecords;
numbervar sumx;
if not inrepeatedgroupheader then
sumx := 0;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.