I have 3 columns with the following values:
A B C
1 8 2
2 5 4
3 2 6
In column F I have the following data with a separator of | between the values.
1 | 3 | 4
3 | 2 | 6
I want to find if the values column F are in the concatenated equivalent of each record in ABC above.
I know I could create a new column D and with the concatenated equivalent, and then just match the column F to Column d, but I need to compare the concatenated equivalent in ABC. If there is a match then return “YES” otherwise return “NO”
Thanks
A B C
1 8 2
2 5 4
3 2 6
In column F I have the following data with a separator of | between the values.
1 | 3 | 4
3 | 2 | 6
I want to find if the values column F are in the concatenated equivalent of each record in ABC above.
I know I could create a new column D and with the concatenated equivalent, and then just match the column F to Column d, but I need to compare the concatenated equivalent in ABC. If there is a match then return “YES” otherwise return “NO”
Thanks