Hi All,
I’m trying to use the following XML tag to suppress Opp Line Items that have the following “Product Family” values “MOJOx”, “LSAxx”, “PPCxx”, or “WSTND” however I’m running into issues.
<# <TableRow Select="/Opportunity//OpportunityLineItems"> #> <# <SuppressTableRow Select="./Product_Family__c" Test="text() = 'WSTND' or text() = 'PPCxx' or text() = 'LSAxx' or text() = 'MOJOx'" /> #> <# <Content Select="./Product2.Name"/> #> <# </TableRow> #>
Any ideas on how I can get this to function correctly?
Thanks!