Loop of calculations?
-
Hi I want to calculate a value in one field if a value is entered into another, but also do it the other way to, so for instance
the calculation in field 1(function(){ if(fieldname2 >= 1) return fieldname2*3; })();
But also in field 2 if someone enters a value in field 1 instead, this calculation in field 2
(function(){ if(fieldname1 >= 1) return fieldname1*5; })();
How should I do this so I don’t get stuck in an infinite loop? Just adding those equations they will keep triggering each other wont they?
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Loop of calculations?’ is closed to new replies.