Hello,
I am trying to set a Boolean field to true on a form based on a condition being met on a user field. If the condition logic is met then the field on the form is set to true otherwise it remains blank.
cant you create a derived field?
if (user field condition met)
return true
else
return false
on the user field
put
user field
when value changed
refresh derived field
On a Create you can use initial value to set the Boolean. On Updates you need to use when value changed to set the Boolean. It depends on what "condition being met on a user field" means. Does that mean someone input something on the form and something changes to met the condition?
This is the way.
I was able to use a derived field to create my if statement. I was trying to pass the if statement into the form directly. Thank you!
Josh,
Could you please share your derived field. I am interested in this.
Thank you! Tammy
Hi Tammy,
You can certainly send me a message but basically I created a conditional field that had my logic for the condition which in our case was determining if the Actor had a certain security role. Then I created a derived field that contained an if statement to check if my conditional field resolved to True.