#1   Report Post  
D. D. Scopes
 
Posts: n/a
Default Help Please

I am looking for a formula that will search 2 columns for identical matches
and when found return a value from a third colum.

Thank you.

DD


  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

=IF(A1=B1,C1,"")

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical matches
and when found return a value from a third colum.

Thank you.

DD




  #3   Report Post  
Dave R.
 
Posts: n/a
Default

Try

=INDEX(C1:C100,MATCH(1,(A1:A100="Lookup1")*(B1:B10 0="Lookup2"),0))

where C1:C100 contains the values (3rd column)

You must enter this with CTRL SHIFT ENTER.

It works by finding a 1 in the array of numbers returned by the
A1:A100="Lookup1"*B1:B100="Lookup2". When there is not lookup1 and lookup2
in the same row, a 0 will be returned. When they are in the same row, a 1
will be returned, which will be matched by the 1 you're looking for, and the
position will be used by the INDEX part to give you the number.



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical

matches
and when found return a value from a third colum.

Thank you.

DD




  #4   Report Post  
D. D. Scopes
 
Posts: n/a
Default

Dave tried it and i gives an #N/A error.

Say the formula is in column D.

I am looking for it to return the value in C3 if there is a match for B3
anywhere in column A.

Thanks.

DD


"Dave R." wrote in message
...
Try

=INDEX(C1:C100,MATCH(1,(A1:A100="Lookup1")*(B1:B10 0="Lookup2"),0))

where C1:C100 contains the values (3rd column)

You must enter this with CTRL SHIFT ENTER.

It works by finding a 1 in the array of numbers returned by the
A1:A100="Lookup1"*B1:B100="Lookup2". When there is not lookup1 and lookup2
in the same row, a 0 will be returned. When they are in the same row, a 1
will be returned, which will be matched by the 1 you're looking for, and

the
position will be used by the INDEX part to give you the number.



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical

matches
and when found return a value from a third colum.

Thank you.

DD






  #5   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Try this and copy down

=IF(COUNTIF(A:A,B1)0,C1,"")

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"D. D. Scopes" wrote in message
...
Dave tried it and i gives an #N/A error.

Say the formula is in column D.

I am looking for it to return the value in C3 if there is a match for B3
anywhere in column A.

Thanks.

DD


"Dave R." wrote in message
...
Try

=INDEX(C1:C100,MATCH(1,(A1:A100="Lookup1")*(B1:B10 0="Lookup2"),0))

where C1:C100 contains the values (3rd column)

You must enter this with CTRL SHIFT ENTER.

It works by finding a 1 in the array of numbers returned by the
A1:A100="Lookup1"*B1:B100="Lookup2". When there is not lookup1 and
lookup2
in the same row, a 0 will be returned. When they are in the same row, a 1
will be returned, which will be matched by the 1 you're looking for, and

the
position will be used by the INDEX part to give you the number.



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical

matches
and when found return a value from a third colum.

Thank you.

DD










  #6   Report Post  
D. D. Scopes
 
Posts: n/a
Default

Thanks Peo:

That did not quite do it. Let me explain again.

Cell A1 has the name Joe Blow.

Cell B1 has has Ford.

Cell C250 has the name Joe Bow.

I want the formula in D250 to search all of column A for the match to C250
(Joe Blow) and if there is a match in cloumn A (there is in cell A1) return
the value Ford from B1 to cell D250.

Thanks again.



"Peo Sjoblom" wrote in message
...
Try this and copy down

=IF(COUNTIF(A:A,B1)0,C1,"")

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"D. D. Scopes" wrote in message
...
Dave tried it and i gives an #N/A error.

Say the formula is in column D.

I am looking for it to return the value in C3 if there is a match for B3
anywhere in column A.

Thanks.

DD


"Dave R." wrote in message
...
Try

=INDEX(C1:C100,MATCH(1,(A1:A100="Lookup1")*(B1:B10 0="Lookup2"),0))

where C1:C100 contains the values (3rd column)

You must enter this with CTRL SHIFT ENTER.

It works by finding a 1 in the array of numbers returned by the
A1:A100="Lookup1"*B1:B100="Lookup2". When there is not lookup1 and
lookup2
in the same row, a 0 will be returned. When they are in the same row, a

1
will be returned, which will be matched by the 1 you're looking for,

and
the
position will be used by the INDEX part to give you the number.



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical
matches
and when found return a value from a third colum.

Thank you.

DD










  #7   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Got you! In D1 put this formula and copy down

=IF(ISNUMBER(MATCH(C1,A:A,0)),INDEX(B:B,MATCH(C1,A :A,0)),"No Match")

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"D. D. Scopes" wrote in message
...
Thanks Peo:

That did not quite do it. Let me explain again.

Cell A1 has the name Joe Blow.

Cell B1 has has Ford.

Cell C250 has the name Joe Bow.

I want the formula in D250 to search all of column A for the match to C250
(Joe Blow) and if there is a match in cloumn A (there is in cell A1)
return
the value Ford from B1 to cell D250.

Thanks again.



"Peo Sjoblom" wrote in message
...
Try this and copy down

=IF(COUNTIF(A:A,B1)0,C1,"")

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"D. D. Scopes" wrote in message
...
Dave tried it and i gives an #N/A error.

Say the formula is in column D.

I am looking for it to return the value in C3 if there is a match for
B3
anywhere in column A.

Thanks.

DD


"Dave R." wrote in message
...
Try

=INDEX(C1:C100,MATCH(1,(A1:A100="Lookup1")*(B1:B10 0="Lookup2"),0))

where C1:C100 contains the values (3rd column)

You must enter this with CTRL SHIFT ENTER.

It works by finding a 1 in the array of numbers returned by the
A1:A100="Lookup1"*B1:B100="Lookup2". When there is not lookup1 and
lookup2
in the same row, a 0 will be returned. When they are in the same row,
a

1
will be returned, which will be matched by the 1 you're looking for,

and
the
position will be used by the INDEX part to give you the number.



"D. D. Scopes" wrote in message
...
I am looking for a formula that will search 2 columns for identical
matches
and when found return a value from a third colum.

Thank you.

DD












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



All times are GMT +1. The time now is 10:15 AM.

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

About Us

"It's about Microsoft Excel"