Emily S
06/12/2025, 1:34 PM<#if locale == "fr_CA">somenumber?replace(",", " ")?replace(".", ",")</#if>
for every currency value that I want to include?Jim Schweder
06/12/2025, 2:09 PMrustyshackles
06/13/2025, 12:35 AMEmily S
06/13/2025, 1:16 PMrustyshackles
06/19/2025, 12:07 AMnsformat_number
might be better for you. You can find the help link here: https://suiteanswers.custhelp.com/app/answers/detail/a_id/26500/loc/en_US. Below is a screenshot of the relevant section.Emily S
06/19/2025, 1:55 PM${record.total}
would print $1,234.56 (english formatting) but ${record.total?string.currency}
prints 1 234,56 $ (french formatting)