I need to format two line items where it is one color when a scenario is true and another when false. There are three different scenarios that can be done:
Line A | Line B | Result |
---|
TRUE | FALSE | Line A is yellow Line B is gray |
FALSE | TRUE | Line B is yellow Line A is gray |
FALSE | FALSE | Both are Yellow |
Is a nested If statement a good choice or is there a better way?