|
|
Multiple V-Lookup
I am trying to do a Vlookup function that will look at 2 cells on the same
row in one tab and find that in the workbook on the other tab in the same row
and then spit back a number from a different cell.
It's like a regular vlookup but i'm trying to search for 2 values in 2
different cells at the same time.
Is this possible? Maybe it's not even a vlookup i should be using.
The problem with using an if(and()) statement is i can only search for the
combination 1 row at a time, so if it doesn't line up, i won't get a match. I
need to search the whole workbook.
If anyone has any ideas, i really appreciate the help!
Thanks,
Rachel
|
|
0
|
|
|
|
Reply
|
Utf
|
5/20/2010 6:46:01 PM |
|
Perhaps something like:
=INDEX(Sheet2!C:C,SUMPRODUCT(--(Sheet2!A2:A100=Criteria1),--(Sheet2!B2:B100=Criteria2),ROW(A2:A100)))
--
Best Regards,
Luke M
"Vlookup Function" <Vlookup Function@discussions.microsoft.com> wrote in
message news:598D2BF1-B575-43CD-939A-9CC207C3E79C@microsoft.com...
>I am trying to do a Vlookup function that will look at 2 cells on the same
> row in one tab and find that in the workbook on the other tab in the same
> row
> and then spit back a number from a different cell.
>
> It's like a regular vlookup but i'm trying to search for 2 values in 2
> different cells at the same time.
>
> Is this possible? Maybe it's not even a vlookup i should be using.
>
> The problem with using an if(and()) statement is i can only search for the
> combination 1 row at a time, so if it doesn't line up, i won't get a
> match. I
> need to search the whole workbook.
>
> If anyone has any ideas, i really appreciate the help!
>
> Thanks,
> Rachel
|
|
0
|
|
|
|
Reply
|
Luke
|
5/20/2010 7:20:10 PM
|
|
Please note that this is an array formula. You create array formulas in the
same way that you create other formulas, except you press CTRL+SHIFT+ENTER to
enter the formula. If successful in 'Formula Bar' you can notice the curly
braces at both ends like "{=<formula>}"
returns matching value from Sheet2 colC based on the match from Sheet2 ColA
and Col B
=INDEX(Sheet2!$C$1:$C$10,MATCH(1,(Sheet2!$A$1:$A$10=criteria1)*
(Sheet2!$B$1:$B$10=criteria2),0))
--
Jacob (MVP - Excel)
"Vlookup Function" wrote:
> I am trying to do a Vlookup function that will look at 2 cells on the same
> row in one tab and find that in the workbook on the other tab in the same row
> and then spit back a number from a different cell.
>
> It's like a regular vlookup but i'm trying to search for 2 values in 2
> different cells at the same time.
>
> Is this possible? Maybe it's not even a vlookup i should be using.
>
> The problem with using an if(and()) statement is i can only search for the
> combination 1 row at a time, so if it doesn't line up, i won't get a match. I
> need to search the whole workbook.
>
> If anyone has any ideas, i really appreciate the help!
>
> Thanks,
> Rachel
|
|
0
|
|
|
|
Reply
|
Utf
|
5/21/2010 7:10:01 AM
|
|
|
2 Replies
167 Views
(page loaded in 3.652 seconds)
Similiar Articles: V Lookup and Multiple Values - microsoft.public.excel.worksheet ...Hello, I am looking to figure out how to use V Lookup with multiple values. I have about 30 of the same name in column A (This is picked out of a... Multiple vlookup and adding values together - microsoft.public.mac ...Version: 2008 Operating System: Mac OS X 10.6 (Snow Leopard) Processor: Intel I am trying to find a way to locate all categories in a table that ... Returning Multiple values from A Vlookup - microsoft.public.excel ...I need a formula to return multiple values from a look up table as the number appears multiple times in a column. Reference cell is $C$6 eg = 410... VLookup Function over Multiple Worksheets - microsoft.public.excel ...I am trying to use the VLOOKUP function over multiple worksheets, can this be done on Excel 2003? I am trying to automatically retrieve data that... Vlookup multiple changes - microsoft.public.excel.miscI was wondering if there is a formulas where I can do vlookup on multiple changes. I have a list of unique number and they can change a few time wi... can I use vlookup to add multiple values - microsoft.public.excel ...I'm trying to sort through a long list of medical CPT codes with corresponding payments. Is it possible to use the vlookup or other function to t... IF/VLOOKUP between multiple worksheets - microsoft.public.excel ...Hello - I am trying to identify an alternative for the following IF/VLOOKUP formula for 13 individual letters with matching Sheets!: =IF(A3="A",... Adding VLOOKUPS across multiple worksheets - microsoft.public ...Hi, I am trying to add several VLOOKUP results obtained from data in several worksheets. My formula is : - =VLOOKUP(A5,'Common Costs - Budget... vlookup across multiple pages - microsoft.public.excel.worksheet ...I'm trying to use vlookup to give me a summary of some number throughout a workbook. It has to sum across about 25 worksheets. not all worksheets ... Vlookup in multiple sheets - microsoft.public.excel.worksheet ...Hi Vish If the 4 sheets are named as Sheet1, Sheet2, Sheet3 and Sheet4 try the below formula from the summary sheet cell B1 with a valid part number in cell A1 In ... Excel Tip: Multiple VLOOKUP - Secondthoughts - Viloria.comExcel Tip: Multiple VLOOKUP. If you're wondering how to make Excel apply VLOOKUP to more than one item, here's how. Let's assume you have a database of suppliers ... Excel - VLookup using multiple keys - Microsoft Access Help and ...Fabalou Web - Excel - VLookup using multiple keys ... VLookup using multiple keys. VLookup is a very powerful tool for finding values in a table. Excel Lookup Formula with Multiple CriteriaHow to create a Lookup formula that uses multiple criteria in Excel. This ... Excel HLOOKUP Step by Step Tutorial; Excel VLOOKUP Array Formula Tutorial Excel: MULTIPLE V-LOOKUP, excel, lookup - AllExperts Questions ...Expert: Miguel Zapico - 10/21/2008. Question Scenario 1 A B 1 Name Marks 2 Amir 25 3 Bobby 63 Sheet 1 ... Combine the VLookup and Match formulas in Microsoft ExcelHow can you easily change the column number in multiple formulas in a worksheet from which complex reports are prepared or in a sheet that contains multiple VLookup ... 7/26/2012 6:09:20 AM
|
|
|
|
|
|
|
|
|