Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Answered

New action to Sum all amounts filtered on Sales Order List page

(0) ShareShare
ReportReport
Posted on by 160

Hi mates! :)

I need your help, I created a button on Sales Order List that count all the records (it's ok) and now, I need another one that sum all the amounts of the filtered records.

Something like:

Order 1 -> 20

Order 2 -> 40

Order 4 -> 10

Pressing button (action) and --> Total Amount: 70

pastedimage1646663234924v1.png

Is there any way to do that?

Thanks a lot :)

  • JMartin Profile Picture
    160 on at
    RE: New action to Sum all amounts filtered on Sales Order List page

    Thanks Lars!

    That worked :D

  • Verified answer
    Lars Lohndorf-Larsen Profile Picture
    on at
    RE: New action to Sum all amounts filtered on Sales Order List page

    Hello, just an example below. It is wrong at least on one point that it is totalling Amount, not Amount (LCY), so it will total $, £, etc alike. But I hope it gives you some ideas where to start:

    pageextension 50101 OrderTotals extends "Sales Order List"

    {

       layout

       {

           // Add changes to page layout here

       }

       actions

       {

           addfirst("F&unctions")

           {

               action(GetTotal)

               {

                   ApplicationArea = all;

                   Caption = 'Get Total';

                   trigger OnAction()

                   var

                       SalesHeader: Record "Sales Header";

                       Total: Decimal;

                   begin

                       Total := 0;

                       SalesHeader.copy(Rec);

                       if SalesHeader.FindSet() then

                           repeat

                               total := total + SalesHeader.Amount;

                           until SalesHeader.Next() = 0;

                       Message(Format(Total));

                   end;

               }

           }

           // Add changes to page actions here

       }

       var

           myInt: Integer;

    }

  • Suggested answer
    Mohana Yadav Profile Picture
    60,209 Super User 2025 Season 1 on at
    RE: New action to Sum all amounts filtered on Sales Order List page

    You can start from here

    docs.microsoft.com/.../devenv-dev-overview

  • JMartin Profile Picture
    160 on at
    RE: New action to Sum all amounts filtered on Sales Order List page

    Hi Mohana :)

    How can I do that?

    Thanks! :)

  • Suggested answer
    Mohana Yadav Profile Picture
    60,209 Super User 2025 Season 1 on at
    RE: New action to Sum all amounts filtered on Sales Order List page

    You can loop through all orders and assign the Amount a Sum variable and display the message at the end.

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 294,095 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,866 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans