Options

How to put a RunningTotal in ERP Navision 2009 Report like Customer Transaction Detail Report?

Hi I am a Beginner here, we have a Customer Transaction Details Report in our ERP Navision 2009, which has Amount & Remaining Amount (LCY) Column. My Boss requested me to put another column for Running Total/Cumulative Sum for the Remaining Amount (LCY). Please, any advice how to put this? Thank you.

Best Answer

  • Options
    aripermadiaripermadi Member Posts: 9
    Answer ✓
    create a variable to store the cumulative sum and assign the value on OnafterGetRecord of your detail data item .

    example : RemAmoutLCYSUM := RemAmoutLCYSUM + Remaining Amount (LCY)

    use the variable as expression for your new column

Answers

  • Options
    aripermadiaripermadi Member Posts: 9
    Answer ✓
    create a variable to store the cumulative sum and assign the value on OnafterGetRecord of your detail data item .

    example : RemAmoutLCYSUM := RemAmoutLCYSUM + Remaining Amount (LCY)

    use the variable as expression for your new column
  • Options
    xhirvanaxhirvana Member Posts: 6
    Thank you! We have upgraded now to Business Central🙏
Sign In or Register to comment.