Is there an if then else or case structure that may be used in formulas?
Like
2 comments
00:24 Dec 20, 2018
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
14:50 Dec 20, 2018
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