How search values from one table and transfer value to appropiate place in another table?

sme102030

New Member
Joined
Nov 30, 2017
Messages
2
Hi, i hardly use Excel so only have very basic knowledge. I have to transfer inventory numbers digitially filled in by an employee on one table, and transfer them to the correct location on a master inventory table based on Item ID numbers. The order of the items on each table do not match each other and the tables must not be modified. There are 200 inventory items on the tables.
Is there a simple forumla to do this? May you display the formula? Thank you! (I tried attaching an example file, but don't see a working attachment button)
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
in the column on the master sheet, where you want to put the transferred data, you will use an index/match formula. Something like
Code:
 =index(range of original data,match(uid on master sheet, uid range on original sheet,0))

UID = unique id, or reference, something we can use to match from the source sheet and the master/destination sheet.
 
Upvote 0
in the column on the master sheet, where you want to put the transferred data, you will use an index/match formula. Something like
Code:
 =index(range of original data,match(uid on master sheet, uid range on original sheet,0))

UID = unique id, or reference, something we can use to match from the source sheet and the master/destination sheet.


It worked beautifully, Thank You!!
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,931
Members
449,480
Latest member
yesitisasport

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