I have a table that has three columns.
A column contains values, B column contains part numbers and C column which also contains values. The sum total of values in column A and Column C should be the same for each part number. The same part number in column B can exist in the table just once or 20+ times.
I'd like to somehow find all duplicated part number that exist in column B and based on that sum up column A and column C so I'd see where the differences are. The table has about 2.000 rows so I can't do that manually.
This example is just for one part number. SUM in column A is 19, in column C 23.
Ideally I'd end up with:
I'm using Excel 2019, would prefer to do it formulas only if at all possible.
Any assistance is more than welcome.
A column contains values, B column contains part numbers and C column which also contains values. The sum total of values in column A and Column C should be the same for each part number. The same part number in column B can exist in the table just once or 20+ times.
I'd like to somehow find all duplicated part number that exist in column B and based on that sum up column A and column C so I'd see where the differences are. The table has about 2.000 rows so I can't do that manually.
Count 1 | Part | Count 2 |
0 | 10446005 | 1 |
0 | 10446005 | 1 |
2 | 10446005 | |
1 | 10446005 | 1 |
0 | 10446005 | 1 |
0 | 10446005 | 2 |
0 | 10446005 | 1 |
0 | 10446005 | 2 |
6 | 10446005 | |
0 | 10446005 | 3 |
0 | 10446005 | 3 |
0 | 10446005 | 3 |
0 | 10446005 | 2 |
0 | 10446005 | 1 |
8 | 10446005 | |
2 | 10446005 | 2 |
This example is just for one part number. SUM in column A is 19, in column C 23.
Ideally I'd end up with:
Count 1 | Part | Count 2 |
19 | 10446005 | 23 |
I'm using Excel 2019, would prefer to do it formulas only if at all possible.
Any assistance is more than welcome.