How to put commas in amount figure in standard reply

I want to add commas and decimals in amount figure in standard reply list.
Please explain.

Attached image for reference.

1

Any update ?

Under Setup…System Settings, you can specify the Number format to suit your preference
eg: #,###.###

1 Like

You can use flt,
In javaScript file, you can directly use it like flt(amount).
In python file , you have to import it as “from frappe.utils import flt” then use it as flt(amount)

3 Likes

Hi,

Please check attached image and let me know if it is correct way to format number.
I want result like this: 69,266.00

#,##,###.## might produce strange values as you have a group of 2 numbers in there…I would say
###,###.## or #,###,###.## would be better