Check Box Value calculation
I have 4 checkbox fields check1,check2...etc all has export value of 1. If I use SFN or value is, it calculates them correctly but I can't figure out how to calculate values in custom calculation script.
I have 4 checkbox fields check1,check2...etc all has export value of 1. If I use SFN or value is, it calculates them correctly but I can't figure out how to calculate values in custom calculation script.
Sorry I thought it will be clear from the code, I can't use that because total is from text fields not checkboxes, when checkbox is checked it add text field value to total.There is 4 checkboxes and 4 text fields (5th been where code go).
Thanks for the clarification. You will have to add a variable to keep track of how many check boxes are checked, and you should explicitly convert the text field values to numbers in case any are blank. Something like this:
var total = 0;
var cb_total = 0;
for (var i = 1; i <= 4; i++) {
if (getField("checkbox"+i).value == "1") {
cb_total += 1;
total += +getField("checkbox" + i + "-price").value;
}
}
event.value = cb_total > 1 : 0.8 * total : total;Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.