How to get $X,000,000 commas in numbers

How do we format a field to be a $ amount and ensure the commas are present?

Hi @Shelly_Carrick - welcome to the forum!

Here's how you do that:

{formtext: name=value; default=5000000}
{=value; format=$,.2f}

You can read more here:

Let me know if you have any more questions :slight_smile:

Thanks! I got the Sum field to format as currency with commas fine. However, I am stuck trying to make the two fields I'm adding also show as currency with commas. I don't seem to get the same choices of Format: Money $,.2f in those fields.

Hi @Shelly_Carrick,

Here's one way to do it:

{note: trim=right}
Price: {formtext: name=price; default=35000}
Shipping: {formtext: name=shipping; default=150}

This sentence and everything above it won't be inserted. You'll only see it in the popup.

{endnote: trim=right}

Price: {=price; format=$,.2f}
Shipping: {=shipping; format=$,.2f}

Total: {=price + shipping; format=$,.2f}