copy data from sheet1 based on the value in sheet2

ssbhatban

Board Regular
Joined
Oct 20, 2015
Messages
81
Office Version
  1. 2010
Platform
  1. Windows
Dear Friends

I have a excel sheet ( master) where in in column B there will be register no, in column C there will be student name & in column D there will be father name

now in i have one more sheet ( derived) in which i will enter a register no in column B & if that register no is there in column B of master sheet then it should pull the corresponding student name & father name from column C & D & put it in the same place in derived sheet

it would be great if somebody can help me with it
 

Attachments

  • image2.PNG
    image2.PNG
    7.3 KB · Views: 3
  • master.PNG
    master.PNG
    25.1 KB · Views: 3

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
It seems that the Vlookup function works. If you would like to hide errors, need to add more, but better to start with a simple way for your learning.

Book1
ABCD
1SL.NoREGSTER NOSTUDENT NAMEFATHER NAME
211260224S Name1F Name1
321072527S Name2F Name2
431191230S Name3F Name3
Delivered
Cell Formulas
RangeFormula
C2:C4C2=VLOOKUP(B2,Master!$B$1:$D$12,2,FALSE)
D2:D4D2=VLOOKUP(B2,Master!$B$1:$D$12,3,FALSE)
 
Upvote 0
Working fine thanks

Just wanted to to know what is the advantage of using $ .even without $ it is working
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

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