Hello, I need to do a vlookup to do some data validation.
(VLOOKUP(AL3,'Clients'!$B:$B,1,0)<>"","Yes","No")
This is what I need.
AL3 and $B:$B are in different tabs of an excel spreadsheet.
AL3 has a column header of "Group Name" and so does column B of the "Client" tab.
I tried using a Join, but this screws up the data if there are duplicate values in Column B.
What I'm trying to do is check in Column B if the group name from AL3 (column A of Tab X) exists in Column B.
Please help me ... if you need help clarifying as I did a terrible job explaining, please don't hesitate to let me know.
Thank you all!
Solved! Go to Solution.
Urgent/Quick Response....
This will create a [Group Name2] field because it will rename the found value. When it finds something, it will be NOT-Null, if it doesn't it will be null.
Use a formula tool as:
IIF(IsNull([Group Name2]),"No","Yes")
Cheers,
Mark
You're my hero, thank you so much
Mark, if this becomes more complex and it ends up becoming an index and match function such as:
IF(INDEX('Client'!$A:$I,MATCH($AI3&$AL3,'Client'!$A:$A&'Client'!$B:$B,0),2)<>"","Yes","No")
How would this be possible? the Find and Replace tool doesn't seem to work here since the index function in excel is looking at multiple columns not just one.
There is also Two Lookup values in the match portion of the function and two lookup array columns. This makes it even more confusing......
IF(INDEX('Client'!$A:$I,MATCH($AI3&$AL3,'Client'!$A:$A&'Client'!$B:$B,0),2)<>"","Yes","No")
Let me give that a try. Thank you for your quick response! You have my utmost gratitude
Mark, I'm completely lost... Is there any way you can show me how to do and take into consideration there is two lookup values in the Match formula and two columns in the lookup array?
This is my last task ............. Please.
IF(INDEX('Client'!$A:$I,MATCH($AI3&$AL3,'Client'!$A:$A&'Client'!$B:$B,0),2)<>"","Yes","No")