Hi all, am trying to add an output column and populate the filter criteria reason. My filter criteria has more than 20 criteria which is spread across multiple columns. So if a row is meeting one of the filter criteria the the output column should populate the corresponding value from the source column. If more than one filter criteria is met then the output should be based on the first
Sample:
Filter Criteria [Data 2] = "A" OR [Data 2] = "B" OR [Data 3] = "1" OR [Data 3] = "2"
| Data 1 | Data 2 | Data 3 | Filter Reason |
| ID1 | A | 1 | A |
| ID2 | B | 5 | B |
| ID3 | C | 3 | |
| ID4 | D | 1 | 1 |
| ID5 | A | 5 | A |
| ID6 | B | 2 | B |
| ID7 | F | 2 | 2 |
| ID8 | U | 9 | |