So here's the problem I'm having--
I have a fairly complicated report with some 50 or so formula fields that are creating a variety of subtotals/totals of my data using the following technique:
whileprintingrecords;
NumberVar LicensesYearTotalCorporate;
LicensesYearTotalCorporate := LicensesYearTotalCorporate + {Opportunity.oppo_licensetot};
ToNumber(LicensesYearTotalCorporate);
I'm unable to use the standard Crystal Sum() function because many of these subtotals are beyond the scope of that function (such as a subtotal by an area of the country or subtotals of a given area over a variety of date ranges, etc.) The above formula, however, can be done with a Sum() function, so I created another formula using Sum() to confirm my suspicion that something wasn't right.
The issue is that on an initial viewing of the report, say after having made a modification to a formula, my formulas give the -correct values-. However, if I click "Refresh", the values change to incorrect ones!! In the example above, my running total will differ from the Sum() function by some amount x, and it is exactly the same amount of difference every time.
This problem only affects certain subtotals of mine and the particular formulas that are affected seem to indicate that somehow a couple of records are not being included in these formulas. The problem isn't across the board, so this technique seems to generally work.... I'm really at a loss here as to what is going on. Thoughts?? I was thinking that perhaps some sort of group suppression, etc. was interfering... The strangest thing to me is that the Sum() function is not affected while my formulas are. I guess I'm just looking for some ideas on where I might look for the source of the problem... Thanks in advance,
Pont
I have a fairly complicated report with some 50 or so formula fields that are creating a variety of subtotals/totals of my data using the following technique:
whileprintingrecords;
NumberVar LicensesYearTotalCorporate;
LicensesYearTotalCorporate := LicensesYearTotalCorporate + {Opportunity.oppo_licensetot};
ToNumber(LicensesYearTotalCorporate);
I'm unable to use the standard Crystal Sum() function because many of these subtotals are beyond the scope of that function (such as a subtotal by an area of the country or subtotals of a given area over a variety of date ranges, etc.) The above formula, however, can be done with a Sum() function, so I created another formula using Sum() to confirm my suspicion that something wasn't right.
The issue is that on an initial viewing of the report, say after having made a modification to a formula, my formulas give the -correct values-. However, if I click "Refresh", the values change to incorrect ones!! In the example above, my running total will differ from the Sum() function by some amount x, and it is exactly the same amount of difference every time.
This problem only affects certain subtotals of mine and the particular formulas that are affected seem to indicate that somehow a couple of records are not being included in these formulas. The problem isn't across the board, so this technique seems to generally work.... I'm really at a loss here as to what is going on. Thoughts?? I was thinking that perhaps some sort of group suppression, etc. was interfering... The strangest thing to me is that the Sum() function is not affected while my formulas are. I guess I'm just looking for some ideas on where I might look for the source of the problem... Thanks in advance,
Pont