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?
Like this...Hi guys,
Can you tell me how to use Vlookup with three criterias to find?
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
2 | F | Y | Z | Result1 | ||
3 | A | S | D | Result2 | ||
4 | X | Y | Z | Result3 | ||
5 | R | T | Y | Result4 | ||
6 | _ | _ | _ | _ | ||
7 | X | Y | Z | Result3 | ||
Sheet1 |
Hi there, i am not an expert. Just here to learn. I think you can also try the following array formula by pressing Ctrl+Shift+Enter
=INDEX($D$1:$D$4,MATCH($A$6&$B$6&$C$6,$A$1:$A$4&$B$1:$B$4&$C$1:$C$4,0))
Yes, that will also work but concatenating the ranges is not as efficient as using the nested IF fversion especially on large ranges.Hi there, i am not an expert. Just here to learn. I think you can also try the following array formula by pressing Ctrl+Shift+Enter
=INDEX($D$1:$D$4,MATCH($A$6&$B$6&$C$6,$A$1:$A$4&$B$1:$B$4&$C$1:$C$4,0))
Yes, that will also work but concatenating the ranges is not as efficient as using the nested IF fversion especially on large ranges.