Question

Conditional Formula

Is there an if then else or case structure that may be used in formulas?

Like 0

Like

2 comments

Hello.

Implementation of such logic would require a script task. Alternatively, you can use conditional flows in order to avoid script tasks but still use the if condition equivalent.

https://academy.bpmonline.com/documents/technic-bpms/7-13/conditional-f…

Best regards,

Matt

You can use ?: operator in formulas. For example, a forumla setting some process parameter that stores an email address:

[#IsSupervisor#] == false ? [#Lookup.Email addresses.Andrew Baker (sample) <a.baker@ac.com>#] : [#Lookup.Email addresses.Supervisor <supervisor@mycompany.com>#]

 

Show all comments