View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom Peo Sjoblom is offline
external usenet poster
 
Posts: 3,268
Default VLOOKUP--I don't get it..

You don't have to search different sheets, it can be in the same sheet,
another sheet in the same workbook or another sheet in another workbook


--


Regards,


Peo Sjoblom



"Jason" wrote in message
...
Thanks to both--this helps. I think I was missing the part where you're
searching in multiple sheets, & I didn't get why you would need this.
Thanks
very much

"tim m" wrote:

You will generally use the VLOOKUP function when you are wanting to
search
for data that is common to two sheets or areas and then return some data
when
you find a match. I'll go over a sample formula:

=VLOOKUP(A1,Sheet2!A1:C3,3,FALSE)

Let's say I have item codes in Sheet1, I want to find a matching item
code
in sheet two and find the price for that item code.

The A1 part in the formula is the code I want to search for.
The next part tells it to look at Sheet2, the A1:C3 part is the range of
data you want to search. (The code you want to find and the price will
be in
there somewhere)

The 3 indicates to return the result of the 3rd column over in the
searched
data.
(For example sheet2 might have the item code, then a part number and then
the price, the price is the result you want thus column3)

The FALSE part means you want to find an exact match.

Does that make some sense?


"Jason" wrote:

I don't consider myself to be stupid person, & am generally well-versed
in
Excel, but for some reason the VLOOKUP function baffles me.

Can someone dumb it down ;) for me? I guess--what does it do, and what
are
the different components of the VLOOKUP formula...

thanks in advance!