Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
I have the following: =VLOOKUP(F2,'SHEET_NAME'!B:G,6,FALSE) I would like to know how I can add another criteria to this VLOOKUP, like instead of just looking at F2, I want it to look at F2 and A2. Is there a way to do this, or a better way? thanks in advance, geebee |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Nov 1, 10:54 am, geebee (noSPAMs) wrote:
hi, I have the following: =VLOOKUP(F2,'SHEET_NAME'!B:G,6,FALSE) I would like to know how I can add another criteria to this VLOOKUP, like instead of just looking at F2, I want it to look at F2 and A2. Is there a way to do this, or a better way? thanks in advance, geebee Can you explain a little more of what you are trying to do? Why do you need both F2 and A2? Maybe the INDEX() function will work? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If the concatenated value of B2 and F2 is in column B, then
=VLOOKUP(B2&F2,'SHEET_NAME'!B:G,6,FALSE) if they are separate in say Band C then =INDEX(G1:G1000,MATCH(1,(B2='SHEET NAME'!B1:B1000)*(F2='SHEET NAME'!C1:C1000),0)) -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "geebee" (noSPAMs) wrote in message ... hi, I have the following: =VLOOKUP(F2,'SHEET_NAME'!B:G,6,FALSE) I would like to know how I can add another criteria to this VLOOKUP, like instead of just looking at F2, I want it to look at F2 and A2. Is there a way to do this, or a better way? thanks in advance, geebee |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vlookup with 2 criteria or more | Excel Discussion (Misc queries) | |||
Vlookup using 2 criteria | Excel Discussion (Misc queries) | |||
Vlookup with 4 Criteria | Excel Discussion (Misc queries) | |||
Vlookup with more than 1 criteria | Excel Discussion (Misc queries) | |||
vlookup with two criteria | Excel Worksheet Functions |