August 2, 200718 yr I'm sure this has been covered here earlier, just cant seem to find it. I would like to know the techniques possible for triggering autoenter fields to evaluate. Thanks!
August 2, 200718 yr Let( [x = SomeTriggerField; y = SomeTriggerField; z = SomeTriggerField]; Your calc here ) Evaluate( "Your Calc Here" ; [someTriggerFieldHere;SomeTriggerFieldHere;SomeTriggerField])
August 2, 200718 yr Author Tks GenX. I'm already using Let in my calc, so this way I will end up nesting Let statements. (is that a no no ?)
August 2, 200718 yr No, there's nothing wrong with nesting but in this case (and there are few times when nesting a let statement is actually necessary)... Just add the trigger fields to your list of variable definitions: Let( [ valueOne = 5; valueTwo = 10; x = SomeTriggerField; y = SomeTriggerField; z = SomeTriggerField ]; valueOne + valueTwo )
August 2, 200718 yr You can add them all together: Let ( [ trigger = SomeField & AnotherField & YetAnotherField ; yourVariable = .... ... ] ; < calc result > )
Create an account or sign in to comment