Format amount money

Hello,

Question, how can I format my Sales Invoice Amount into “1,000.00” from “1000.00”. I’ve tried using {{ “{:.2f}”.format(doc.net_total ) }} but my format is still the same (1000.00)

Thank you.

are you trying this in print format?

Then try this,

{{ format_currency(amount, currency) }}