Using if() for Field Fallback in Workfront Fusion
Logic: If the Event Coordinator field is populated, fetch that value. Otherwise, get the value from the Project Coordinator field.
Formula:
{{if(2.eventCoordinator; 2.eventCoordinator; 2.projectCoordinator)}}Explanation:
This formula reads as: "If 2.eventCoordinator is populated, output 2.eventCoordinator; otherwise, output 2.projectCoordinator."
Key point: You don't need to explicitly check whether 2.eventCoordinator is not empty — the if() function's truthy check already handles that. A populated field is treated as true by default, so the condition alone (2.eventCoordinator) is sufficient without an additional !isEmpty() or similar check.
Comments
Post a Comment