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

Announcements

No record found.

News and Announcements icon
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,286 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
    239,040 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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Joris dG Profile Picture

Joris dG 5

#2
Alexey Lekanov Profile Picture

Alexey Lekanov 2

#2
Henrik Nordlöf Profile Picture

Henrik Nordlöf 2 User Group Leader

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans