Does someone have experience with formatting curre...
# advancedpdf
n
Does someone have experience with formatting currency? I've tried a few different versions.
${price?string("##0.00")}
${price?string.currency}
Both of these end up blank in the print out. Meanwhile,
${price}
shows the actual number
s
${nsformat_currency(price)}
usually works, unless you want a different formatting than NetSuite uses.
n
Works great thanks.