If anyone can offer advice on how to write javascript to return a 0.......
If anyone can offer advice on how to write javascript to return a 0 if a number is less than zero I would greatly appreciate it. I can't seem to figure this out. Here is the scenario: I'm trying to get field L144 to return a positive number or a zero. I'm looking at field L26 to make this determination. I was thinking something along the lines:
var theField = event.value ("L26");
var theValue = theField.value;
if (+theValue > 0) {
event.value (L144").value = +theValue;
}
else {
event.value ("L144").value = "0";
}
Thank you in advance for any help with this!
