Reputation: 13
I'm working with a NetSuite application and trying to create a saved search that calculates Tax Total, Subtotal,Total and Discount Item for sales orders. I've attempted to set this up in the "Results" tab of the saved search configuration, but it doesn't seem to be working as expected.
I would appreciate any advice or examples on how to achieve this. Thank you!
Upvotes: 1
Views: 1626
Reputation: 1
Formula Curreny
Tax: {taxtotal} Shipping: {shippingamount}
Subtotal: nvl({totalamount},0) - nvl({discountamount},0) - nvl({taxtotal},0) - nvl({shippingamount},0)
Upvotes: 0