Need help having the following formula round to the nearest hundredth
I have the following formula and it works but I would like my answer to round to the nearest hundredth. Any help would be greatly appreciated.
var ST = this.getField("ST").value;
var SR = this.getField("SR").value;
var SS = this.getField("SS").value;
var SA = this.getField("SA").value;
var WT = this.getField("WT").value;
var WR = this.getField("WR").value;
var WS = this.getField("WS").value;
var WA = this.getField("WA").value;
if((SA == "" && SA != "0")&&(WA != "0"))
{
event.value = "TBD";
}
else
{
event.value = (ST*WT)+(SR*WR)+(SS*WS)+(SA*WA);
}
