Frappe Print Format How To Show Commas But Not Currency Symbol

When I use item.get_formatted("net_rate") I get a currency symbol next to it. How do I format it with commas but leave the symbol out? Using the value directly does not give me commas

GO to Global Defaults and set Hide Currency Symbol to Yes

You see I don’t want it done globally. I just need to do it for one value in the print format

@zeeeeeeeero try this :
{{ "{:,.2f}".format(item.net_rate) }}

1 Like

Thanks it worked!