the Data Amount in my Table have Positive and Negative Values,
I need to SUM it up in my Report with all negative have to be positive to sum it up.
How do i code it?
SELECT SUM(ABS(Amount)) from Table ------*ERROR*
SELECT ABS(SUM(Amount)) from Table ------*ERROR*
any different approach?
thanks.
*This post is locked for comments
I have the same question (0)