user290687
user290687

Reputation: 87

NetSuite Advanced PDF Multiplication

Looking for a way to multiply the rate * quantity in an advanced pdf form.

Using ${item.rate}*${item.quantity} print 100*10 instead of 1000. I know I can grab the amount field but I have a custom quantity field set up that I am using so need to calculate it.

Upvotes: 2

Views: 1912

Answers (1)

Shea Brennan
Shea Brennan

Reputation: 1132

Try: ${item.rate*item.quantity}

Upvotes: 3

Related Questions