filter axapta report based on display method

844 views Asked by At

I want to filter axapta report to display only records with QTY !=0 . The field QTY is based on display method . I could acheive this by overriding send method. The problem now is that if the last record in the section has QTY=0, then the subtotal is not displayed.

2

There are 2 answers

0
10p On

You can calculate and display subtotals in the same way you've been recommended to deal with grand totals 4 hours ago - just calculate and display them in a programmableSection manually.

0
Jan B. Kjeldsen On

Remember to return false if you do not call super() in the send() method.