forgive me my lack of knowledge on this subject...
I´m dealing with a pdf-form, where I should create a calculation. This is my calculation so far.
var f = this.getField("mil");
var g = this.getField("kr/mil")
event.value = f.value * g.value
But whatever 'var g' is the result that should be presented should never exceed: 17 * var f
The maximum result returned 17 times var f.
I´m dealing with a pdf-form, where I should create a calculation. This is my calculation so far.
var f = this.getField("mil");
var g = this.getField("kr/mil")
event.value = f.value * g.value
But whatever 'var g' is the result that should be presented should never exceed: 17 * var f
The maximum result returned 17 times var f.