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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
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,214,979
Messages
6,122,560
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