Value is not updated
Hello, I am creating a form and have a problem with the calculation of a value. The formula does not update.
The value to be calculated is in the field:
"SUM monthly amount"
The formula is:
var sum = +getField("SUM monthly amount").value *12/52;
if (sum !== 0) {
event.value = sum;
} else {
event.value = "";
}
The first time I fill in the field, the calculation is performed, but as soon as I change the value in the field "SUM monthly amount", the value to be calculated is not updated.
All other calculations work and are also updated.
Translated with www.DeepL.com/Translator (free version)
