Mar 31, 2012 #1 veles Technical User Joined Sep 1, 2006 Messages 57 Location CA Hi, I am using Crystal XI I have a field that contains positive and negative numbers. I need a formula to sum only the positive numbers Example 3 4 -2 Sum to show 7 instead of 5 Thanks
Hi, I am using Crystal XI I have a field that contains positive and negative numbers. I need a formula to sum only the positive numbers Example 3 4 -2 Sum to show 7 instead of 5 Thanks
Mar 31, 2012 #2 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Create a formula like this: if {table.number} > 0 then {table.number} Place this in the detail section and right click on it and insert a sum on it. -LB Upvote 0 Downvote
Create a formula like this: if {table.number} > 0 then {table.number} Place this in the detail section and right click on it and insert a sum on it. -LB
Mar 31, 2012 Thread starter #3 veles Technical User Joined Sep 1, 2006 Messages 57 Location CA Thanks LB. I will try this and report back. Your solutions always work for me Upvote 0 Downvote
Apr 3, 2012 Thread starter #4 veles Technical User Joined Sep 1, 2006 Messages 57 Location CA LB it works perfectly. Thanks once again Upvote 0 Downvote