I am trying to assign a value for Column4 based on the grid below for the 3 columns, there are approximately 30 combinations(and growing).
I am trying to assign the value using Formula calc (IF ([Column3]=Null() AND [Column2]="B" AND [Column1]="C") then "D" ENDIF) but want to see if there is a better way of doing this other than a large IF function in alteryx- something similar to list comprehension in python.
| Column1 | Column2 | Column3 |
| A | B | C |
| D | E | F |
| D | B | C |
| F | E | A |
| C | D | B |
| A | | |
| C | B | |
| E | F | A |