Skip to main content
New Participant
April 17, 2026
Question

I am using a!currency to show thousand separator

  • April 17, 2026
  • 6 replies
  • 7 views

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. 

6 replies

harshas2775
Brainy
April 17, 2026

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. 

New Participant
April 17, 2026

thanks for the reply...actually the display columns are number of packs so no need to have any currency symbol.

harshas2775
Brainy
April 17, 2026

Got it! You can strip away the US $ in this case then e. g.

stripwith(a!currency(isoCode: "USD",value:23546,indicatorAlignment: "START"),"US$")

shubhama926776
Brainy
April 17, 2026

Use fixed() instead of a!currency() if you only want commas and no $ symbol, because a!currency() is designed to display a currency indicator.

शुभम्
New Participant
April 17, 2026

Thank you so much.
This is the one I was looking for, it helped me.