Vlookup help

ubaps

New Member
Joined
Jan 25, 2017
Messages
8
Hello All,

I'm trying to work on a formula regarding vlookup.

there are basically 3 column.

Column A's data corresponds to the data in column B. (basically, they are partners)

I need to find (using vlookup) the values from Column C that are in Column A together with Column B.

Column A
Column B
Column C
Apple
3
Orange
Orange
5
Banana
Banana
3
Apple

<tbody>
</tbody>

The the formula should be:

Column A
Column B
Column C
OUTPUT
OUTPUT
Apple
3
Orange
Orange
5
Orange
5
Banana
Banana
3
Banana
3
Apple
Apple
3

<tbody>
</tbody>

Apologies for my bad explanation in English.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Column "D":

Code:
=VLOOKUP(A2,$A$2:$C$4,3,FALSE)

Column "E":

Code:
=VLOOKUP(D2,$A$2:$B$4,2,FALSE)
 
Upvote 0
Worked like a charm, I was thinking of compressing into 1 long formula. Thanks Beyond_avarice.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,392
Members
449,445
Latest member
JJFabEngineering

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