Last updated: 11 Mar 1998
One way around some curly calculations is to imbed and IF statement in it. Check this one out:
SSum(If(condition,field.A,(field.B + field.C)))
One paper you can write this out as:
IF (condition) THEN Ssum(field.A)
ELSE =(field.B + field.C)