cis12232004
Technical User
I am attempting to total a field in a report but the values comprising that field can either be positive or negative and when I use this formula:
WhilePrintingRecords;
If IsNull (Sum ({@TSiteQtySet}, {vr_10630.SiteId}))
Then
{@RptBegQty}
Else
{@RptBegQty} - sum ({@TSiteQtySet}, {vr_10630.SiteId})
it isn't really accurate. How can I amend this formula so that it takes positive numbers number into the calculation?
WhilePrintingRecords;
If IsNull (Sum ({@TSiteQtySet}, {vr_10630.SiteId}))
Then
{@RptBegQty}
Else
{@RptBegQty} - sum ({@TSiteQtySet}, {vr_10630.SiteId})
it isn't really accurate. How can I amend this formula so that it takes positive numbers number into the calculation?