Use Javascript to format it like this:
Number(1.33555).toFixed(2); // 1.34 , toFixed() rounding up too, if you dont believe me test it :
Thanks, but I am afraid I need step by step instruction where to add this JS. Somewhere when I do mapping?
you can do it on mapping tab like create 2 local variables from right top at data mapping tab, then you can click to add JS (next to the created local variable) you should see a tab saying,
function (value , element) {
parseFloat(value).toFixed(6);
}
PS: you dont need to create local variables to do this, any entity got JS button next to them however saving user's location would be good , you might need it again.
you dont need to create local variables to the this, any entity got JS button next to them however saving user's location would be good , you might need it again.
var x = parseFloat(value).toFixed(6);
return x;
try this one.