Maybe this can help you https://docs.mendix.com/refguide/parse-and-format-decimal-function-calls
Hi Julien Devanthey,
The Round function will help you to bring the value to a certain precision. Refer the below documentation
https://docs.mendix.com/refguide/mathematical-function-calls#4-round
Hi Julien,
You can use Round function with your decimal value.
Eg: round(5723.685496,2)
if you want decimal into String you just pass toString method.
Thanks,
Hope this will help you