Skip to main content Stream TDX Bengaluru on Salesforce+. Start learning the critical skills you need to build and deploy trusted autonomous agents with Agentforce. Register for free.

I have a l section in my template which is conditionally displayed based on a checkbox field. How can I add another condition within the syntax to conditionally display the content based on 2 field values?

 

Currently I am using this syntax: " <# <Conditional Select="/SBQQ__Quote__c/CPQ_Show_Signature_Lines__c " Match= "True" /> #>  " and I would like to add another checkbox as a condition. 

 

Thanks

1 answer
  1. Aug 14, 2023, 8:22 AM

    I found the solution and this is a working example with two boolean conditions: <# <Conditional Test="//SBQQ__Quote__c/CPQ_Show_Signature_Lines__c[text() = 'True'] and //SBQQ__Quote__c/CPQ_Binding_Offer__c[text() = 'True'] "/> #>

0/9000