hi, i´m new in Navision Financial development. I´m trying to create a report that when the value of a field is equal to zero that line dont apear. Sample : Conta Saldo ------------------ 10 125 11 -125 12 0 [xx(] 13 354 ------------------- i want that the report apears like this Conta Saldo ------------------ 10 125 11 -125 13 354 ------------------- whitout the zero Please help me. PS: Sorry. My english is not very good.
OnAfterGetRecord() IF Value = 0 THEN CurrReport.SKIP
or OnPreSection() CurrReport.SHOWOUTPUT(Value <> 0);
or OnPreDataItem() setfilter(value, '<>0');
depending on taste and circumstances…