Decimal expression in Microflow’s Change Object

0
When I enter the Value as shown in the picture above, Temp_Avg_Coil and Temp_Avg_Core are displayed up to 4 decimal places. Is there a way to change this?(I want to print to 2 decimal places.)
asked
1 answers
0

Use:

'...text: ' + formatDecimal($Product/Temp_Avg_Coil, '0.00')  + ' ... more text'

This will show 1.2345 as 1.23 It even rounds the number for you, so it will show 1.20999 as 1.21

answered