alfredo197135
New Member
- Joined
- Oct 28, 2009
- Messages
- 38
Hi guys,
Can you tell me how to use Vlookup with three criterias to find?
Can you tell me how to use Vlookup with three criterias to find?
I want to use the above formula with 2 criterias, I modified the formula accordingly but it is not working. Please help me correct it...
=INDEX(Sheet2!G2:G110511,MATCH(1,IF(Sheet2!E2:E110511=A2,if(Sheet2!F2:F110511=B2))),0))
Control+shift+enter, not just enter:
Either...
=INDEX(Sheet2!G2:G110511,MATCH(1,IF(Sheet2!E2:E110511=A2,if(Sheet2!F2:F110511=B2,1)),0))
Or...
=INDEX(Sheet2!G2:G110511,MATCH(B2,IF(Sheet2!E2:E110511=A2,Sheet2!F2:F110511),0))
Thank you for this! This is currently working for EXACT matches, can it work for similar matches?
i have 2 lists. List 1 has company names and contact names against it.
List 2 has Company names with contact names and emails against it. So in both lists contacts are similar names but not exact. FOR eg: List 1 has Microsoft Corp. with Contact Name as Karen Walters.
List 2 has Microsoft Corp. with Contact name as Karen A Walters with email as kwalters@microsoft.com.
So i just need to pull that email on the basis of company names and contact names.
=INDEX(Sheet2!$C$2:$C$4,MATCH(SUBSTITUTE(B2," ","*"),
IF(Sheet2!$A$2:$A$4=A2,Sheet2!$B$2:$B$4),0))
Can you post some sample data and tell us what results you expect?i have 2 lists. List 1 has company names and contact names against it.
List 2 has Company names with contact names and emails against it. So in both lists contacts are similar names but not exact. FOR eg: List 1 has Microsoft Corp. with Contact Name as Karen Walters.
List 2 has Microsoft Corp. with Contact name as Karen A Walters with email as kwalters@microsoft.com.
So i just need to pull that email on the basis of company names and contact names.
Control+shift+enter, not just enter:
Either...
=INDEX(Sheet2!G2:G110511,MATCH(1,IF(Sheet2!E2:E110511=A2,if(Sheet2!F2:F110511=B2,1)),0))
Or...
=INDEX(Sheet2!G2:G110511,MATCH(B2,IF(Sheet2!E2:E110511=A2,Sheet2!F2:F110511),0))
your formulas are astonishing Aladin!
Great to hear that they are useful to you.
Control+shift+enter, not just enter:
Either...
=INDEX(Sheet2!G2:G110511,MATCH(1,IF(Sheet2!E2:E110511=A2,if(Sheet2!F2:F110511=B2,1)),0))
Or...
=INDEX(Sheet2!G2:G110511,MATCH(B2,IF(Sheet2!E2:E110511=A2,Sheet2!F2:F110511),0))