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
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
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
Did these answers solve your question?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.