How to return to the value of a cell?

G

Guest

For example, I have two columns as follows:
A B C D
11 50 10 35
23 20
35 10
47 40
59 30

I need the Excel to look up the row first where the value of the column B
equals to cell C. And then, at the same row, pick up the value in column A
and input it into cell D.

Thank you very much.
 
N

Niek Otten

=INDEX(A1:A5,MATCH(C1,B1:B5))

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| For example, I have two columns as follows:
| A B C D
| 11 50 10 35
| 23 20
| 35 10
| 47 40
| 59 30
|
| I need the Excel to look up the row first where the value of the column B
| equals to cell C. And then, at the same row, pick up the value in column A
| and input it into cell D.
|
| Thank you very much.
|
 
R

Rick Rothstein \(MVP - VB\)

For example, I have two columns as follows:
A B C D
11 50 10 35
23 20
35 10
47 40
59 30

I need the Excel to look up the row first where the value of the column B
equals to cell C. And then, at the same row, pick up the value in column A
and input it into cell D.

Oh, why not... let's add to the mix of answers...

=INDIRECT("A"&MATCH(C1,$B$1:$B$100,0))

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top