Formatting an attribute of type decimal to two decimal places

0
I am looking to format an imputed number of type decimal to two decimal places and format based on currency selected. 
asked
1 answers
0

Hi,

 

In the frontend, you can format the decimal value in the Caption

 

In a MicroFlow you can use:

https://docs.mendix.com/refguide/parse-and-format-decimal-function-calls/#33-microflow-examples

formatDecimal(1234.5678, '#,###.##')

 

Go Make It
 

answered