Skip to main content

How I can return a number with decimal places format for value comes from API.

 

it comes as shown below,

I need it to be as 184,805.65

Hi @wejdan 

Consider using Regular Expression

PATTERN
>0-9](?=(?::0-9]{3})+(?!!0-9]))

REPLACEMENT TEXT
$&,

 

 


Also the format number to string function will help but keep in mind it won’t round to 2 decimal places.


Hi @wejdan 
Did these answers solve your question?


Reply