Navision reports a sale of an item as a negative number (-1). What can I add to my Jet Report formula to return negative numbers as positive numbers?
Thanks!
Date
Votes
1 comment
-
Jet Reports Historic Posts airplaneguy,
You can always just multiply the number returned by -1.
Some examples,
=NF(CellRef,"Amount")*-1
=NL("First","G/L Account","Balance")*-1
or to always have a positive number no matter if the number from the database is neg or pos, you can use
=ABS(NF(CellRef,"Amount"))
Please sign in to leave a comment.