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
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'] "/> #>