How can I get a calculated number to display in a ...
# advancedpdf
b
How can I get a calculated number to display in a currency format? I am getting an error when trying it this way : ${invoice_details.fxrate*qtysum?string.currency}
d
what was the error? try
${(invoice_details.fxrate*qtysum)?string.currency}
m
There is also a
nsformat_currency
function
☝️ 2