Jump to content

Trigerring auto enter calculations


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

Recommended Posts

Let(

[x = SomeTriggerField;

y = SomeTriggerField;

z = SomeTriggerField];

Your calc here

)

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

Link to comment
Share on other sites

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

)

Link to comment
Share on other sites

This topic is 6204 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.