Merging/Formating Question

xlsiam

New Member
Joined
Jan 30, 2014
Messages
5
How can I merge/format 2017 and 2016 (BEFORE) together like the example at the bottom(AFTER). The only difference is that Taylor has zero for 2017. Thank you,
BEFORE
2017
2016
Andy
500
Andy
800
Eddy
100
Eddy
300
John
1000
John
400
Todd
600
Taylor
1
Todd
600
AFTER
2017
2016
Andy
500
800
Eddy
100
300
John
1000
400
Taylor
0
1
Todd
600
600

<tbody>
</tbody>
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Keep an original copy of your two data sets.
Then copy your two name ranges and post one under the other.
Then sort and use the Remove Duplicates functionality to remove all duplicate names.
Then use VLOOKUP functions to pull the appropriate data from your two lists in the proper columns.
You can use an IFERROR function around it to return 0 for unmatched records, i.e.
Code:
=IFERROR(VLOOKUP(...),0)
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,004
Members
449,203
Latest member
Daymo66

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