HI,
I want to check if the value in one of my column matches againt the list of values present in another column of same data set an dpolupate result baed on comparion.
The list is delimiter seperated.
| Column1 | validList |
| 0 | "0","1" |
| 5 | "0","1" |
output:
| Column1 | validList | result |
| 0 | "0","1" | TRUE |
| 5 | "0","1" | FALSE |
Thanks