
Social Media Statistics Shaping Canada’s Digital Landscape in 2025
Social Media Statistics Shaping Canada’s Digital Landscape in 2025 In 2025, social media usage in…
Oolook Best


If you manage any spreadsheet for emails, form entries, sales leads, or reports, duplicates can mess up your counts and accuracy. Google Sheets gives you multiple ways to find and remove duplicates, from built-in tools to advanced formulas and even automation. This guide walks you through all five methods, so you can choose what fits your workflow best—no matter your skill level.
A duplicate means two or more identical rows or values in a range. These can exist:

Data > Data cleanup > Remove duplicatesBest For: Quick cleanup across large ranges

Use a formula like:
=COUNTIF(A:A, A1)>1
Steps:
Format > Conditional FormattingBest For: Visual review before deleting
Example:
=UNIQUE(A2:A100)
Creates a new list that excludes all duplicates.
Best For: Creating deduplicated outputs without touching the source
Steps:
Insert > Pivot TableBest For: Dynamic deduplication and analysis

Paste this in Extensions > Apps Script:
function removeDuplicates() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = sheet.getDataRange().getValues();
var unique = [];
var seen = {};
for (var i = 0; i < data.length; i++) {
var row = data[i].join();
if (!seen[row]) {
seen[row] = true;
unique.push(data[i]);
}
}
sheet.clearContents();
sheet.getRange(1, 1, unique.length, unique[0].length).setValues(unique);
}
Best For: Auto-removing duplicates from dynamic imports
=COUNTIF(A$2:A2, A2)=1
Use under Data > Data validation > Custom formula is
Best For: Proactively blocking repeats
How do I find duplicate rows in Google Sheets?
Use conditional formatting with =COUNTIF(range, cell)>1 to highlight.
How do I remove duplicates without deleting data?
Use UNIQUE() or pivot tables to extract only unique records.
Can I automate this process?
Yes, with Google Apps Script or Google Workspace add-ons.
Explore more insights on AI, social media, and building a brand that lasts.

Social Media Statistics Shaping Canada’s Digital Landscape in 2025 In 2025, social media usage in…

As we dive into the dynamic world of Instagram in 2025, finding trending audio can…

The landscape of social media in 2025 is both dynamic and expansive. As we dive…

It’s no secret that influencer marketing has become a costly endeavor with diminishing returns. As…