Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 168
Default two way vlookup

hello,
i am trying to get my target with two way lookup and i need get result in
Sheet2 C1

Sheet1 lookup
A-col, a1 = japan B_col, b1 = tokyo C_col, c1 = good
Sheet2 match
A-col, a1 = japan B_col, b1 = tokyo C_col, C1 = good <-- result

now i am using this:
=INDEX(Sheet1!$A$1:$A$2000,MATCH(1,(Sheet2!A1=Shee t1!$A$1:$A$2000)*(Sheet2!N20=Sheet1!$B$1:$B$2000), 3))

Thanks in advance
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default two way vlookup

Saved from a previous post:

If you want exact matches for just two columns (and return a value from a
third), you could use:

=index(othersheet!$c$1:$c$100,
match(1,(a2=othersheet!$a$1:$a$100)*(b2=othersheet !$b$1:$b$100),0))

(all in one cell)

This is an array formula. Hit ctrl-shift-enter instead of enter. If you do it
correctly, excel will wrap curly brackets {} around your formula. (don't type
them yourself.)

Adjust the range to match--but you can't use the whole column.

This returns the value in othersheet column C when column A and B (of
othersheet) match A2 and B2 of the sheet with the formula.

And you can add more conditions by just adding more stuff to that product
portion of the formula:

=index(othersheet!$d$1:$d$100,
match(1,(a2=othersheet!$a$1:$a$100)
*(b2=othersheet!$b$1:$b$100)
*(c2=othersheet!$c$1:$c$100),0))

Tufail wrote:

hello,
i am trying to get my target with two way lookup and i need get result in
Sheet2 C1

Sheet1 lookup
A-col, a1 = japan B_col, b1 = tokyo C_col, c1 = good
Sheet2 match
A-col, a1 = japan B_col, b1 = tokyo C_col, C1 = good <-- result

now i am using this:
=INDEX(Sheet1!$A$1:$A$2000,MATCH(1,(Sheet2!A1=Shee t1!$A$1:$A$2000)*(Sheet2!N20=Sheet1!$B$1:$B$2000), 3))

Thanks in advance


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 168
Default two way vlookup

it's working really thank you very much, very happy new YEAR.


"Dave Peterson" wrote:

Saved from a previous post:

If you want exact matches for just two columns (and return a value from a
third), you could use:

=index(othersheet!$c$1:$c$100,
match(1,(a2=othersheet!$a$1:$a$100)*(b2=othersheet !$b$1:$b$100),0))

(all in one cell)

This is an array formula. Hit ctrl-shift-enter instead of enter. If you do it
correctly, excel will wrap curly brackets {} around your formula. (don't type
them yourself.)

Adjust the range to match--but you can't use the whole column.

This returns the value in othersheet column C when column A and B (of
othersheet) match A2 and B2 of the sheet with the formula.

And you can add more conditions by just adding more stuff to that product
portion of the formula:

=index(othersheet!$d$1:$d$100,
match(1,(a2=othersheet!$a$1:$a$100)
*(b2=othersheet!$b$1:$b$100)
*(c2=othersheet!$c$1:$c$100),0))

Tufail wrote:

hello,
i am trying to get my target with two way lookup and i need get result in
Sheet2 C1

Sheet1 lookup
A-col, a1 = japan B_col, b1 = tokyo C_col, c1 = good
Sheet2 match
A-col, a1 = japan B_col, b1 = tokyo C_col, C1 = good <-- result

now i am using this:
=INDEX(Sheet1!$A$1:$A$2000,MATCH(1,(Sheet2!A1=Shee t1!$A$1:$A$2000)*(Sheet2!N20=Sheet1!$B$1:$B$2000), 3))

Thanks in advance


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VLookUp - Does the VLookUp return the exact information? Cpviv Excel Worksheet Functions 2 October 28th 08 09:57 AM
Vlookup in vlookup - taking the result as array name SupperDuck Excel Worksheet Functions 2 June 2nd 07 11:05 AM
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP buffgirl71 Excel Discussion (Misc queries) 12 November 14th 06 11:36 PM
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) MikeR-Oz New Users to Excel 1 March 22nd 06 09:01 AM
Vlookup info being used without vlookup table attached? Excel Worksheet Functions 0 January 25th 05 10:43 AM


All times are GMT +1. The time now is 09:43 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"