vlookup.

G

Guest

Hello.
I am using vlookup to lookup a value from coloumn A and display the
corresponding coloumn in the same row coloum C.
I want to have vlookup look for value in coloumn A and also in coloumn A of
another worksheet in the same workbook. Is this possible using vlookup? what
else can i use?

Thanks.
 
G

Guest

Amit,

Let's assume your range is A1:C10 on both worksheets (sheet 1 & 2), and you
are looking up the value in E1.

On sheet1:

=VLOOKUP(E1,$A$1:$C$10,3,FALSE)
will find the value in column C where the value in column A matches cell E1
precisely.

=VLOOKUP(E1,Sheet2!$A$1:$C$10,3,FALSE)
will look the value from cell E1 (on sheet1) up on sheet2 and return the
value from column C on sheet2 which matches exactly.

HTH

Pete
 
G

Guest

If the value you are looking for is on Sheet1 in cell E1, and your second
table is on sheet2, the following will work:

=VLOOKUP(E1,Sheet2!A:C,3,FALSE)
 

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

Similar Threads

to find the difference between time 2
Excel function 4
how to copare digits in two coloumn in Excel? 2
help with sum / count formula 9
sumproduct. 1
Sorting Coloumns that are Formula's 1
auto sum 2
if functions 2

Top