Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() How do you do a vlookup and hlookup at the same time: D E F A 1 4 7 B 2 5 8 C 3 6 9 Where for example A E = 4 Thank you for your help. Steven |
#2
![]() |
|||
|
|||
![]()
You could use a combination of Match and Index. Assuming your table is
in the range A1:D4 (where A1 is blank and D4 = 9), the following will work: =INDEX(B2:D4,MATCH("A",A2:A4),MATCH("E",B1:D1)) - John |
#3
![]() |
|||
|
|||
![]()
Try...
=INDEX(B2:D4,MATCH("A",A2:A4,0),MATCH("E",B1:D1,0) ) or =INDEX(B2:D4,MATCH(F1,A2:A4,0),MATCH(G1,B1:D1,0)) ....where F1 contains your first criterion, such as A, and G1 contains your second criterion, such as E. Hope this helps! In article , Steven wrote: How do you do a vlookup and hlookup at the same time: D E F A 1 4 7 B 2 5 8 C 3 6 9 Where for example A E = 4 Thank you for your help. Steven |
#4
![]() |
|||
|
|||
![]()
Steven wrote:
How do you do a vlookup and hlookup at the same time: D E F A 1 4 7 B 2 5 8 C 3 6 9 Where for example A E = 4 Thank you for your help. Steven Highlight your data range, including the headings; click on Insert|Name|Create; check Top row and Left Column, OK. Then =A D will return 4, =B D will return 2, etc. Alan Beban |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lookup combine vlookup with hlookup | Excel Worksheet Functions | |||
Vlookup and Hlookup | Excel Worksheet Functions | |||
Vlookup and Hlookup | Excel Worksheet Functions | |||
Can vlookup or hlookup look to other worksheets within a workbook. | Excel Worksheet Functions | |||
How do I find a value in an array (VLOOKUP? HLOOKUP?) | New Users to Excel |