Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hello, I need a function that looks at two conditions and returns a value. For example, I need a to look at cell H3 wich is CAPONE and also look at cell a13 which is 1/7/06 and return a value from a range name - apps. I tried mixing up vlookups and match with no results. Thanks, -- jlg5454 ------------------------------------------------------------------------ jlg5454's Profile: http://www.excelforum.com/member.php...o&userid=30201 View this thread: http://www.excelforum.com/showthread...hreadid=499808 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() It gives me the first match to the date. I want the exact match from the name range with the criteria. There are four columns in this range. First column is date, second is h3, third is something and fourth is the data I want to return. Basically I want to lookup data based on columns 1 and 2 matching. Thanks -- jlg5454 ------------------------------------------------------------------------ jlg5454's Profile: http://www.excelforum.com/member.php...o&userid=30201 View this thread: http://www.excelforum.com/showthread...hreadid=499808 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In that case, you need a column to concatenate the 2 values so that vlookup
can find both at the same time. HTH, -- Gary Brown If this post was helpful, please click the ''Yes'' button next to ''Was this Post Helpfull to you?''. "jlg5454" wrote: It gives me the first match to the date. I want the exact match from the name range with the criteria. There are four columns in this range. First column is date, second is h3, third is something and fourth is the data I want to return. Basically I want to lookup data based on columns 1 and 2 matching. Thanks -- jlg5454 ------------------------------------------------------------------------ jlg5454's Profile: http://www.excelforum.com/member.php...o&userid=30201 View this thread: http://www.excelforum.com/showthread...hreadid=499808 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming your lookup table has the following form:
A........B..............C Date....Name....Value 1/7......Capone..18 etc Then the following ARRAY formula will do: =OFFSET($C$1, MAX(ROW(1:100)*--($A$2:$A$101=a13)*--($B$2:$B$101=H3)), 0) This means that you must use the key combination Shift+Ctrl+Enter to commit. HTH Kostis Vezerides |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Another way to lookup data | Excel Worksheet Functions | |||
Lookup Vector > Lookup Value | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions | |||
Lookup function w/Text and Year | Excel Worksheet Functions | |||
double lookup, nest, or macro? | Excel Worksheet Functions |