Pull through ID data to other sheets

jpwg19

New Member
Joined
Oct 6, 2018
Messages
2
Hi all
I have a load of data that I need to upload to a new system using a new customer account number, and with only basic levels of knowledge in excel I was hoping that someone may be able to help or point me in the right direction to research how to do it.


The data is split into a large number of sheets with the only unique field in each sheet being the old account number and the new account number only showing on the first sheet. I need to pull the new account number over to all the other sheets but there maybe more than one line of the same account number on sheet 2, sheet 3 etc due to multiple properties for that one customers account number. It could also be the case that there is no data on Sheet 2, Sheet 3 etc for the Sheet 1 Account Number due to data deletion.

Sheet 1
[TABLE="width: 456"]
<colgroup><col width="152" style="width:114pt"> <col width="152" style="width:114pt"> <col width="152" style="width:114pt"> </colgroup><tbody>[TR]
[TD="class: xl69, width: 152"]NEW Cust ID[/TD]
[TD="class: xl65, width: 152"]Account_Customer[/TD]
[TD="class: xl65, width: 152"]OLD Account_No[/TD]
[/TR]
[TR]
[TD="class: xl69"]111[/TD]
[TD="class: xl67"]No[/TD]
[TD="class: xl66"]A53821[/TD]
[/TR]
[TR]
[TD="class: xl69"]112[/TD]
[TD="class: xl67"]Yes[/TD]
[TD="class: xl66"]A53822[/TD]
[/TR]
[TR]
[TD="class: xl69"]113[/TD]
[TD="class: xl67"]No[/TD]
[TD="class: xl66"]AAC00001[/TD]
[/TR]
[TR]
[TD="class: xl69"]114[/TD]
[TD="class: xl67"]Yes[/TD]
[TD="class: xl66"]ABB00001[/TD]
[/TR]
[TR]
[TD="class: xl69"]115[/TD]
[TD="class: xl67"]No[/TD]
[TD="class: xl66"]ACC00001[/TD]
[/TR]
[TR]
[TD="class: xl69"]116[/TD]
[TD="class: xl67"]Yes[/TD]
[TD="class: xl66"]ADD00001[/TD]
[/TR]
[TR]
[TD="class: xl69"]117[/TD]
[TD="class: xl67"]Yes[/TD]
[TD="class: xl66"]ADI00001[/TD]
[/TR]
[TR]
[TD="class: xl69"]118[/TD]
[TD="class: xl67"]No[/TD]
[TD="class: xl66"]ADL00001[/TD]
[/TR]
</tbody>[/TABLE]

Sheet 2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]NEW Cust ID[/TD]
[TD]OLD Account_No[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]A53822[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]000537[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ATF00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]AAC00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ABB00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ABB00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ABB00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ACC00001[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]ADD00001[/TD]
[/TR]
</tbody>[/TABLE]

Many thanks
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
How about

Excel 2013/2016
AB
1NEW Cust IDOLD Account_No
2112A53822
3Noaccount537
4NoaccountATF00001
5113AAC00001
6114ABB00001
7114ABB00001
8114ABB00001
9115ACC00001
10116ADD00001
sheet2
Cell Formulas
RangeFormula
A2=IFERROR(INDEX(Sheet1!A$2:C$9,MATCH(B2,Sheet1!C$2:C$9,0),1),"Noaccount")
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,155
Messages
6,170,405
Members
452,325
Latest member
BlahQz

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