I have 3 lists each with 2 columns. Within the 2nd column of each are values I need to be added together. The keys within each lists' left column are mostly matching, however each list has its own variation (ex. on might have a unique key within their left column, different than the others).
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]26[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]56[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]32[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]19[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]42[/TD]
[/TR]
</tbody>[/TABLE]
I need to obtain and match the sum with each key on the left. I've tried summing each vlookup but it doesn't seem to work. Any guidance would greatly help on this.
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]26[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]56[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]32[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 100"]
<tbody>[TR]
[TD]1[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]19[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]42[/TD]
[/TR]
</tbody>[/TABLE]
I need to obtain and match the sum with each key on the left. I've tried summing each vlookup but it doesn't seem to work. Any guidance would greatly help on this.