Question
Don't want it to Round up??
I have a formula script that I have:
var v1 = Number(this.getField("NMS").value);
var v2 = Number(this.getField("CMS").value);
var v3 = Number(this.getField("CMS").value);
if (v3==0) event.value = "";
else event.value = (v1-v2)/v3;
if (v2==0) event.value = "";
if (v1==0) event.value = "";
They don't want it to round up but they also want me to leave it at two decimals.
Can someone please help me.
