Nested IF Expression in Cloud Flow
Introduction:
We have been using Action-Condition for IF in Cloud flow, while this is easy to use, it ends up making your flow bigger in size. Instead if we just need to validate conditions, we can use expression to do the same checks.
Solution:
Add a compose action>> Go to Expression>> Add if()
Example:
If(empty(field),'No Data', 'Data found')
Nested IF Example:
If(empty(field),'No Data', if(equals(field,'xyz'),' XYZ Data', 'Data Found'))
Input: Account with Name XYZ is created.
Action:
Output:
Comments
Post a Comment