目次
How to deal with Duplicates with Adjacent Values in Sheets
The task of integrating duplicates – are the same entries occurring more than one time in your data set – always happens when you have multiple columns where one has a list of duplicate names, IDs etc., while adjacent cells just have corresponding values. For example, imagine the following arises.

If you look at “Alphabet” as an example, that’s it. (↓)

This isn’t as easy as it looks if you do it manually, soon appears to be time-consuming process. As follows, let’s see how to do this quickly using ① Pivot Tables, and ② UNIQUE and SUMIF functions.
1. Using Pivot Tables
The fastest way to remove duplicates in Sheets is using Pivot Tables. The following 5 steps let you do this so easily.
1-1. How to Open Pivot Tables
- Click anywhere inside the table containing the records
- Go to the menu Data, then select Pivot table
- Select Existing Sheet, then set Location clicking the top left blank corner

1-2. How to Put Pivot Tables into Practice
- The Pivot table editor shown, go to Rows and click Add ▼Companies
- On Values tab, click Add ▼Quarterly Net Income to get SUM

In Step 1 above, keep in mind that it’s not Columns but “Rows” tab though it seemingly returns a column by clicking Add. It’s confusing, but in the Pivot table editor, “Rows” only fetches the “Unique records” from original list (Column A) and set them as “Row headings”. So, at first sight, it just looks like a column but technically, it’s “Row headings (or titles, labels if you’re more familiar with them…)” that are supposed to lead rows later.
1-3. Tips
Now you have the following spreadsheet shown below that all the duplicates are got rid of with Net Income summed up each other… by Pivot Table!

2. Using Formulas
The Unique function in Sheets allows you to make a list of only unique values from another list that has duplicates. On the other hand, the adjacent list that has corresponding numbers doesn’t have duplicates so that we can’t use the same. Instead, we sum up those numbers using the SUMIF function. The following 5 steps let you do this so easily.
1. Use the Unique function
- Click the top cell where you start and type an equals sign (=) and UNIQUE.
- Drag your mouse over the range (A2:A13) where you pull unique values.

Importantly, the formula just exists in the top cell. There is no need to copy down the formula like other functions. Just keep in mind that you have sufficient blank cells below the top cell as long as the formula can return all the unique values from the list.
2. Use SUMIF function
- Click the top cell where you start and type an equals sign (=) and SUMIF.
- Set the syntax as “= SUMIF(Range to be tested, Criterion, Range to SUM)”
- So, it’s going to be “= SUMIF(A2:A13, D2, B2:B13)”
- Press F4 to make an Absolute Reference ($) in the ranges.

Size of Range to be tested against Criterion and Range to sum must be equal, then they’re recognized related to each other. In the above case, they’re “A2:A13” and “B2:B13”.