Vlookup and show value from adjacent cell.

Pastilhas

New Member
Joined
Oct 18, 2006
Messages
2
Hi all

Nedd some help.

I need a way to take data from one sheet to another one.

Exemple: Sheet 1

---------Col.A --- Col.B --- Col.C
Line 1 -- 10 ----- David --- AA <----- Part from first data
Line 2 ----------- Boy ------ BB <---- Part from first data
Line 3 -- 22 ----- Joana --- CC <-- Part from secound data
Line 4 ----------- Girl ------- AA <-- Part from secound data

I make this formula in sheet 2
=Vlookup(A1;'Sheet 1!$A$1:$C$4;2;FALSE)

Exemple: Sheet 2

---------Col.A --- Col.B --- Col.C
Line 1 -- 10 ---- David ---
Line 3 -- 22 ---- Joan -----

But i whent one formula capable of showing in Col.C data from secound line from first data, data from secound line from secound data ect ...

Exemple: Sheet 2

---------Col.A --- Col.B --- Col.C
Line 1 -- 10 ----- David --- Boy
Line 3 -- 22 ----- Joan ---- Girl

Sorry for my dam poor english. hope someone can help me.
thx
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Try...

C1, copied down:

=INDEX(Sheet1!$B$1:$B$4,MATCH(A1,Sheet1!$A$1:$A$4,0)+1)

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

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