web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)
Answered

How to Select SUM(ABS(Data)) in AX

(0) ShareShare
ReportReport
Posted on by

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)
  • Verified answer
    Mea_ Profile Picture
    60,284 on at

    Hi RenSonozaki ,

    Try this :

    select sum(Amount) from table1 where amount < 0;

    select sum(Amount) from table2 where amount > 0;

    Amount = abs(table1.Amount) + table2.Amount;

  • Community Member Profile Picture
    on at

    Hi RenSonozaki !

    you try code again:

    real sum ; 

    While select * form Table 

    {

    if ( Table . Amount <0) sum += (Amount * (-1));

    else sum += Amount ;

    }

  • Suggested answer
    Martin Dráb Profile Picture
    237,805 Most Valuable Professional on at

    As far as I know, SSRS expression =(sum(abs(Fields!Amount.Value)) should work (but I didn't test it).

    If you're looking how to do in a select statement, Ievgen's approach is a nice and efficient workaround. You can't use T-SQL function ABS from X++, unless you use a computed column or a direct T-SQL query.

    Fetching all records one by one, as suggested by ThanhNguyen, would be inefficient and if you had many records, it would become a serious problem. By the way, you could use X++ function abs() there, therefore the body of the while loop could be simply sum += abs(table.Amount);.

  • Community Member Profile Picture
    on at

    i used ievgen Miroshnikov's suggestion, it worked. thanks.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans