I have a decision table that has the same conditions (Condition 2 and 3) except one that changes multiple times (Condition 1) Similar to below, Condition 2 and 3 are the same for the Condition 1 a - d and different than Condition 1 e.
Condition 1 | Condition 2 | Condition 3 |
---|---|---|
a | 1 | b |
b | 1 | b |
c | 1 | b |
d | 1 | b |
e | 1 | c |
Ideally I could do something like this:
Condition 1 | Condition 2 | Condition 3 |
---|---|---|
a,b,c,d | 1 | b |
e | 1 | c |
Is this possible?
Chris