Conditional Logic Working Examples
Basic Structure:
<!--RENDER='{{!Opportunity.stagename}}' == 'Closed Won' -->
This is opportunity is currently in the Prospecting phase.
<!--ENDRENDER--><!--RENDER='{{!Contact.Phone}}' == 'NULL' -->
No phone number on record. Please update.
<!--ENDRENDER-->
<!--RENDER='{{!Contact.Phone}}' != 'NULL' -->
Phone number: {{!Contact.Phone}}
<!--ENDRENDER--><!--RENDER='{{!Contact.IsActive__c}}' == 'True' -->
This contact is marked active.
<!--ENDRENDER-->AND / OR Structure:
Scenario: Show a message if the customer is in CA or NV and either has an active contract or a pending renewal.
Nested Structure:
CONTAINS Structure:
Complex Solution:
Scenario:
1
2
3
4
Complex Nested RENDER Example
Last updated
Was this helpful?

