Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6384 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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!

Posted

Let(

[x = SomeTriggerField;

y = SomeTriggerField;

z = SomeTriggerField];

Your calc here

)

Evaluate( "Your Calc Here" ; [someTriggerFieldHere;SomeTriggerFieldHere;SomeTriggerField])

Posted

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 ?)

Posted

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

)

This topic is 6384 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.