Hi,
I have 2 data set, one with data and other having rules with comparator like AND , OR. I need to check each row of data set if it matches to any of the rules. If yes then return the value from Match Found column.
data set sample-
| Key | Name | Value1 | Value2 |
| 123 | N1 | V11 | V21 |
| 234 | N2 | V12 | V22 |
| 345 | N3 | V13 | V23 |
Rules data set
| Rule No | Value1 | Comparator | Value2 | Match Found |
| 1 | V13 | AND | V23 | Possible |
| 2 | V12 | OR | V21 | Possible |
| 3 | V11 | AND | V22 | Possible |
I have tried using Join tool which works only for comparator AND because in JOIN tool I am giving both Value1 and Value 2 columns to be matched. but not able to figure out how to work out the OR comparator.
Any ideas or suggestions on this?
Thank you.