bjornliow
9 months agoNew Contributor II
Multiple Or Statements
Hi I am trying to add conditional formatting to my CubeView to bold certain rows, so that it stands out for my users.
I'm using treedescendants(i) to list out all the accounts to minimize any maintenance, so I can't bold the rows individually. Also, the accounts I want bolded are not in the same indentation level, so I can't use that expression.
I tried using If (MemberDescription = 'Apple') Or (MemberDescription = 'Orange') Then Bold = True End If.
This works, but if I tried adding another Or statement, it would not work:
Eg: If (MemberDescription = 'Apple') Or (MemberDescription = 'Orange') Or (MemberDescription = 'Banana') Then Bold = True End If.
Is there another workaround for multiple Or statements/ how should I update my condition?