Hello Guys,
I have the following table:
In this, I want to get a result in third column by matching values in columns A and B. I also have a named range "AP" that includes values T4, T3, and T1.
Now, I want to check if the value in B2 is WS, and the values in A3 to A12 are matching with A2, and the corresponding values in B3 to B12 are matching with any of the values in range "AP", then True otherwise give me false.
In the above data, the answer should be True, but if the A11 value is changed from G.S. to any other value, then it should be False.
I have the following table:
Code:
[TABLE="width: 291"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]Driver[/TD]
[TD]Location[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]WS[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]CC[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]CC[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]HE[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]HE[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]DD[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]DD[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]TD[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]P.S.[/TD]
[TD]TD[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]G.J.[/TD]
[TD]T4[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]P.S.[/TD]
[TD]T4[/TD]
[TD] [/TD]
[/TR]
</tbody>[/TABLE]
In this, I want to get a result in third column by matching values in columns A and B. I also have a named range "AP" that includes values T4, T3, and T1.
Now, I want to check if the value in B2 is WS, and the values in A3 to A12 are matching with A2, and the corresponding values in B3 to B12 are matching with any of the values in range "AP", then True otherwise give me false.
In the above data, the answer should be True, but if the A11 value is changed from G.S. to any other value, then it should be False.