This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Hello-
I'm needing assistance with Condition Tool formula.
When text is entered I want the workflow to flow one way... When text is empty I want it to flow another. Thanks!
You could try a detour tool with an IsEmpty([#1]) in your Conditional to flip the detour.
Hi,
You can use formula tool with condition
IIF(IsEmpty([Name]), "OK", "NOTOK")
In place of "OK"/ "NOTOK" you can write your IF condition for the flow.