1

I have an automation where I am getting numbers as an input and it is plain number without any formating

Example 3500 15000 55000 300

Here is a screenshot on how it looks on MAKE Make screenshot

These numbers are actually currencies (US) and I want to format them with commas and all. .ie. like this 3,500 15,000

Could anyone help me figure out how to do it

I used format number function but couldn't figure out how to do em.

1 Answers1

0

You can use following formula and replace number with your input.

{{get(split(formatNumber(1000000; 3; "."; ","); "."); 1)}}
Tyler2P
  • 2,324
  • 26
  • 22
  • 31