Commas in Integer

I have an integer variable being used in a formula for a text element. Is there a way to make it so that there are commas in the number? For example, I would want 11245 to show as 11,245 or 131415112 to show as 131,415,112.

Presumably you mean when it’s displayed to the user? I used copilot to create some JS for this. Works perfectly.

I advise to take a look at the native Intl JavaScript package

3 Likes