I have a form which has two number fields that house formulas. However, the second field can not be more than 50% of the first field, no matter what the calculation totals. I.E.....
field 1 + field 2 = field A ($500)
field 3 + field 4 = field B ($400)
But field B cannot be any more that $250 (which is 50% of field A)
How can I do this?
Solved! Go to Solution.
Views
Replies
Total Likes
You may execute the following script on the calculate event of the field B:
var temp = fieldA.rawValue * 0.5; if(fieldB.rawValue> temp) fieldB.rawValue = temp;
You may execute the following script on the calculate event of the field B:
var temp = fieldA.rawValue * 0.5; if(fieldB.rawValue> temp) fieldB.rawValue = temp;
That worked!
Thanks for your help!!
Hi,
use a calculation script like this.
var nSum = field1.rawValue + field3.rawValue; if (!fieldA.isNull) { nSum = nSum <= fieldA.rawValue *.5 ? nSum : fieldA.rawValue; } this.rawValue = nSum;
Views
Likes
Replies
Views
Likes
Replies