V Look up 101

Cadette

New Member
Joined
Oct 22, 2013
Messages
8
Hi, I'm a newbie in terms of the exploration of the Excel Functions and would like to seek your help on how does the V-Look up function actually works. I keep hearing it from my colleagues but was not able to understand how it works.

Can you give me an insight?

I am planning to use it in one of my office projects (that is still in my drawing board though).

Thanks in advance.. :confused::confused:
 
Nice formula, shyy!

It also works with IF in place of CHOOSE

=VLOOKUP(E2,IF({1,0},$B$2:$B$4,$A$2:$A$4),2,FALSE)
 
Upvote 0

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Nice formula, shyy!

It also works with IF in place of CHOOSE

=VLOOKUP(E2,IF({1,0},$B$2:$B$4,$A$2:$A$4),2,FALSE)
Wow, that is awesome!


Side note:
How did thisget interpraited as a Left Lookup ?
Hi Guys and Gals,

what if, the column i am to look at have the same entity, say a last name, then i would like to have the vlookup look at the next column, say first name.

To me, that sounds like a 2 criteria Vlookup, like
A1=John
B1=Doe

Then Column C is First Names and Column D is Last names.
And we want to lookup John Doe in Column C and D..
 
Upvote 0
I agree, it doesn't sound like a LEFT VLOOKUP because the OP specified the next column is the First Name. So A1 would be Doe and B1 would be John. If Doe is found in Column A, to return the value in column B using John as the lookup value. That is how I am seeing it.
 
Upvote 0
Hi Guys and gals, thanks for the inputs and apologies for creating a confusion.

the situation goes like this, i am to look for a certain information for list of persons. i have two sets of lists, one is around 470 names and the other is 670 names. The names in the 470 can also be found in the 670. the information i have are as follows: Last name, First name, information. my dilemma is this, i have to update the information of the 470 from the 670. i planned on using the last names as initial reference in finding the information. but since these are names, there are possibilities of similar surnames. i was thinking a conditional formula, of sort, may be used (not sure if i have got the concept right). but right now, i still cant come up with a formula that works...

it was like, Column A for the last names, B for First name and C for the information. the dilemma is like, there are more than two entries of Doe in column A, and
B contains John, Peter, Jack,etc. It was more like, i have a John Doe, Peter Doe and a Jack Doe in my list.

hope you can help me..
 
Upvote 0
hi, thanks for the inputs. i am starting to see a better light of this. Thanks a mil!

another question though, i am having a hard time identifying how can incorporate in my constructed formula the condition that if there are more than one entry of the surname, the formula must look at the cell next to it.

what i have, so far is this:

=index(Rawfile!D5:D641,match(update!A5,Rawfile!B5:B541,0))

i would like to have a condition statement in the MATCH part or somewhere in the formula so it will perform the condition i have indicated above.
 
Upvote 0
Is this what you need?


Excel 2010
ABC
1SurnameGiven NameInformation
2DoePeter3
Input
Cell Formulas
RangeFormula
C2{=INDEX(RawData!C$2:C$5,MATCH(1,IF(RawData!A$2:A$5=A2,IF(RawData!B$2:B$5=B2,1)),0))}
Press CTRL+SHIFT+ENTER to enter array formulas.



Excel 2010
ABC
1SurnameGiven NameInformation
2DoeJohn2
3DoePeter3
4DoeJack4
RawData
 
Upvote 0
If you are going to lookup numbers, suggest you use SUMIF or SUMIFS or SUMPRODUCT instead


Excel 2010
ABC
1SurnameGiven NameInformation
2DoeJohn2
3DoePeter3
4DoeJack4
5
6
7
8
9SurnameGiven NameInformation
10DoePeter3
Sheet2
Cell Formulas
RangeFormula
C10=SUMIFS($C$2:$C$4,$A$2:$A$4,A10,$B$2:$B$4,B10)
 
Upvote 0

Forum statistics

Threads
1,215,477
Messages
6,125,037
Members
449,205
Latest member
Eggy66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top