Posts

Showing posts from July, 2026

How to add a new document version using Workfront Fusion

Image
  1. First add a Workfront Document Upload module and configure it as shown below

Using if() for Field Fallback in Workfront Fusion

Image
  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.