need to work across two sheets in excel 2003

V

Vandy

I need to be able to put in column b4 on sheet 1 the answer to this, on sheet
2 find "AC" in column C and put the corresponding name in column A, in b4 on
sheet 1. (excel 2003)
 
R

Roger Govier

Hi Vandy

In B4 enter
=INDEX(Sheet2!$A:$A,MATCH(Sheet2!$C:$C,"AC",0))
better still would be if your Value AC was entered in A4, then substitute
that in the formula

=INDEX(Sheet2!$A:$A,MATCH(Sheet2!$C:$C,A4,0))
 
R

Roger Govier

Sorry Vandy, typed that incorrectly
It should read

=INDEX(Sheet2!$A:$A,MATCH("AC",Sheet2!$C:$C,0))
and
=INDEX(Sheet2!$A:$A,MATCH(A4,Sheet2!$C:$C,0))
 
V

Vandy

Thank You....it works.. Have a great day!

Roger Govier said:
Sorry Vandy, typed that incorrectly
It should read

=INDEX(Sheet2!$A:$A,MATCH("AC",Sheet2!$C:$C,0))
and
=INDEX(Sheet2!$A:$A,MATCH(A4,Sheet2!$C:$C,0))
 

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