Manigandan
3 years agoNew Contributor II
Need Help in Logic
Hi All,
My input is 123.45 → i should transform as 12345
123.456 then i should transform as 12345 should include only two characters after decimal point.
thank you in advance!
Hi Manigandan,
Try with this expression: $num.toString().substring(0, $num.toString().indexOf(“.”) + 3).replace(“.”, “”)
Where $num is the field name of the number.
Thanks,
Pero M.