Condition in workflow calculation

is there anyway posible to have if else statement in when doing calculation in workflow field? or how to store its data?

1 Like

you can write it like:

_2438002___person_field_email_value == '' ? "if@jmc.tools" : "else@jmc.tools";

However that may not do what you are after if the above doesn’t give you the result you were looking for then try:

_2438002___person_field_email_value ? "if@jmc.tools" : "else@jmc.tools"

Hope that makes sense