NetSuite Advanced PDF I have a number which is dis...
# ask-stanley-ai
a
NetSuite Advanced PDF I have a number which is displaying as £1,000. I want it to display as £1,000.00. What do I need to amend to achieve this?
c
AI generated answer (using internal Slack threads):
To display a number as £1,000.00 in NetSuite Advanced PDF, you need to use the format function in Freemarker. Here is an example of how you can do this:
Copy code
freemarker
${record.total?string.currency}
In this example,
record.total
is the field that contains the number you want to format. The
?string.currency
part is a built-in Freemarker function that formats the number as a currency, including the decimal places. Please replace
record.total
with the actual field name that you are using. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.831867397
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828601599
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.826860726
Please provide your feedback on this answer.