There is one
Conditional Type, "if"
- If - Ties together two conditions with one leading to the result of the other condition
Select Operator will give you a list of relationships to choose from between conditions
Enter Value will determine for the condition is looking (
Tip: Leave value blank if you're using fields and want to have a default filler value if that same record field is blank.)
Under
Enter Label, put in what text you'd like to show if that condition is matched
Click
Save and Continue when using the "if" as your original conditional type to bring up, "else if" as an
Conditional Type and continue the chain to add a second resolution
For example, I would like a receiving end person's First Name to show up if that field is populated inside my software, but, if it's not populated and blank, I'd like it to say "Friend". I would use these steps:
1.
2. Insert & Continue
3.
Your code would look like this,
[if value = "##user.FirstName##" Equal= "" ]Friend[/if] [elseif value = "##user.FirstName##" NotEqual= "" ]##user.FirstName##[/elseif]