D17339
08/31/2021, 4:39 PMEric B
08/31/2021, 5:00 PMD17339
08/31/2021, 5:02 PMD17339
08/31/2021, 5:02 PMscottvonduhn
08/31/2021, 5:24 PM${item.netamount / item.quantity}
? Usually Freemarker will convert the currency value to a number automatically, though there are some situations where it cannot.
If that does not work, you could make a Transaction Line currency formula field that does this calculation, then use that custom line field directly in the template.D17339
08/31/2021, 5:40 PM${item.netamount / item.quantity} whcih failed then i tried different methods
D17339
08/31/2021, 5:41 PMscottvonduhn
08/31/2021, 5:42 PM{item.netamount} / {item.quantity}
or {netamount} / {quantity}
, I can't remember whichscottvonduhn
08/31/2021, 5:42 PMcreece
08/31/2021, 5:57 PMD17339
08/31/2021, 6:19 PM