Answered
Sum of fields 1-14 * 2.20462.
All,
I am trying to figure out how to sum fields 1-14 and then multiply that by 2.20462 essentially the sum of kilograms and then convert it to lbs. Is there a way to do this?
Thanks,
-J
All,
I am trying to figure out how to sum fields 1-14 and then multiply that by 2.20462 essentially the sum of kilograms and then convert it to lbs. Is there a way to do this?
Thanks,
-J
Use this code as your custom calculation script:
var total = 0;
for (var i=1; i<=14; i++) {
var f = this.getField("10 MARKED WEIGHT OF LOTRow"+i);
total+=Number(f.value);
}
event.value = total * 2.20462;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.