Post

2 followers Follow
0
Avatar

Creating a formula with If..Then

 

I have custom field named: 'C_ExcludefromIATI', data type:  "Toggle", Item: "Data".

Then I have a custom field named "C_ExcludefromIATIPickList", data type"Pick list"Item: Project. This returns: "True" or "False".

Whenever creating a related Item to the project, I would like that the value of  'C_ExcludefromIATI' is based on the value of  "C_ExcludefromIATIPickList" in the project.

IF C_ExcludefromIATIPickList" is "True", THEN 'C_ExcludefromIATI' toggle is checked

ELSE C_ExcludefromIATIPickList" is "unckecked".

 

How can I make this formula?

 
Susanne Peters Answered

Please sign in to leave a comment.

1 comment

0
Avatar

You would have to create a workflow rule that updates the field C_ExcludefromlATI and the criteria for the update would be IF($C_ExcludefromATIPicklist = TRUE, TRUE, FALSE). There are 3 arguments in the IF statement separated by commas: the criteria to check, the then, and finally the else.

Josh Santos 0 votes
Comment actions Permalink