How can I multiply 'checkbox1' value with 'textbox1' value and get the result of it in 'textbox2'
Hello,
I'm very beginner and have issues like in the subject. I have some troubles because I got something like this in my 'textbox2' but it doesnt work:
var a = this.getField("Text1");
var b = this.getField("Checkbox1");
event.value = Math.abs(a.value)*(b.value);
I don't think it should be super hard, but I can't seem to figure it out 😞 help
