I want to add commas and decimals in amount figure in standard reply list.
Please explain.
Attached image for reference.
I want to add commas and decimals in amount figure in standard reply list.
Please explain.
Attached image for reference.
Any update ?
Under Setup…System Settings, you can specify the Number format to suit your preference
eg: #,###.###
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)
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