I have the below example table. I need to match values in column a width value in column d and return the value in column c. The problem is that the value in column a are the first name, middle name and last name and are not always in the same order. For example, they can be as per below:
First name Middle Name Last name
First name Last name Middle name
Last name First name Middle name
but one of the combinations from column a will match with column d and then return the value i column c. For example if I have the below table it will return 1 since the value in column d is one possible value of column a.
thanks for your help
First name Middle Name Last name
First name Last name Middle name
Last name First name Middle name
but one of the combinations from column a will match with column d and then return the value i column c. For example if I have the below table it will return 1 since the value in column d is one possible value of column a.
a | b | c | d | |
Ron Laf Cam | 1 | Laf Ron Cam | ||
thanks for your help