If/Else statement help - error
Hello,
I am configuring a simple if else statement to display content based on data being passed in targetdata in the workflow. Here is my statement. I have tested the "if" part alone and it works fine but once I add in the Else, I get the following error.
<% if ( targetData.segment == "A" ) { %>
HELLO
<% } %>
<% else { %>
GOODBYE
<% } %>
