I am using a!currency to show thousand separator but it by default shows $ symbol if used USD ISO.Here I need to remove this $ symbol while displaying this field.
Discussion posts and replies are publicly visible
Instead of $ would the code 'USD" work? like this
a!currency( isoCode: "USD", value: 1234.56, showSeparators: false, format: "CODE", indicatorAlignment: "START" )
Using 'format' parameter you can show either $ or USD.
thanks for the reply...actually the display columns are number of packs so no need to have any currency symbol.
Got it! You can strip away the US $ in this case then e. g.
stripwith(a!currency(isoCode: "USD",value:23546,indicatorAlignment: "START"),"US$")
Use fixed() instead of a!currency() if you only want commas and no $ symbol, because a!currency() is designed to display a currency indicator.