Table of Contents
How to delete duplicate words in Excel cell
User-defined functions that delete duplicates in cells
How to insert function code in a workbook
RemoveDupeWords function syntax
How to use the RemoveDupeWords function
VBA macro that deletes duplicate text in multiple cells at once
How to use macros
How to remove duplicate characters in a cell
User-defined functions that remove duplicate characters
RemoveDupeChars function syntax
How to use the RemoveDupeChars function
Delete VBA macros with the same characters in a cell
Use Ultimate Suite to delete duplicate substrings
Downloadable resources
Home Topics excel How to remove duplicates within a cell in Excel

How to remove duplicates within a cell in Excel

Apr 01, 2025 am 04:26 AM

Detailed explanation of how to delete duplicates in Excel cells

This article introduces three ways to find and delete duplicates in Excel cells, and just choose the method that suits you best.

Microsoft Excel offers a variety of different options when it comes to deleting duplicate values ​​or rows. However, when it is necessary to delete the same text within a given cell, Excel... provides nothing. No tools, no functions, no formulas, nothing. Will this prevent us from achieving our goals? Of course not. If Excel doesn't have the features we need, let's write one ourselves!

  • Use VBA to remove duplicate words in Excel
  • Use VBA to delete duplicate characters
  • Use Ultimate Suite to delete duplicate text in multiple cells

How to delete duplicate words in Excel cell

Problem: There is the same word or text string in the cell and you want to delete the second and all subsequent duplicates.

Solution: Customize user-defined functions or VBA macros.

How to remove duplicates within a cell in Excel

User-defined functions that delete duplicates in cells

To eliminate duplicate text in a cell, you can use the following custom user-defined function (UDF) called RemoveDupeWords :

 Function RemoveDupeWords(text As String, Optional delimiter As String = " ") As String
  Dim dictionary As Object
  Dim x, part
  Set dictionary = CreateObject("Scripting.Dictionary")
  dictionary.CompareMode = vbTextCompare
  For Each x In Split(text, delimiter)
    part = Trim(x)
    If part  "" And Not dictionary.Exists(part) Then
      dictionary.Add part, Nothing
    End If
  Next
  If dictionary.Count > 0 Then
    RemoveDupeWords = Join(dictionary.keys, delimiter)
  Else
    RemoveDupeWords = ""
  End If
  Set dictionary = Nothing
End Function
Copy after login

How to insert function code in a workbook

To add the above code to your Excel you need to do the following:

  1. Press Alt F11 to open the Visual Basic Editor.
  2. In the left pane, right-click ThisWorkbook and select Insert > Modules .
  3. Paste the above code into the code window.

For more information, see How to Insert VBA Code in Excel.

RemoveDupeWords function syntax

Our newly created function to delete duplicate text in a cell has the following syntax:

RemoveDupeWords(text, [delimiter]) where:

  • Text (Required) - A string or cell from which to delete duplicate text.
  • Delimiter (optional) - A delimiter for duplicate text to be separated by it. If omitted, use spaces as delimiters.

The function is case-insensitive , meaning lowercase and uppercase letters are treated as the same characters.

How to use the RemoveDupeWords function

After adding the function code to the workbook, you can use it in your formula like using Excel's built-in functions.

Just start typing the function name after the equal sign and it will appear in formula intelligence. Double-click the function and it will be inserted into the cell. Define the parameters, type the closing bracket, press Enter, and your formula is finished.

How to remove duplicates within a cell in Excel

For example, to remove duplicate words separated by commas and spaces from A2, enter the following formula in B2 and drag it down to the desired number of cells:

=RemoveDupeWords(A2, ", ")

As a result, you get a list of unique words or substrings separated by commas and spaces :

How to remove duplicates within a cell in Excel

If you want to get a comma-separated list, use commas only for the delimiter:

=RemoveDupeWords(A2, ",")

How to remove duplicates within a cell in Excel

If your source data is separated by spaces , the second parameter should be " " or omitted:

=RemoveDupeWords(A2)

How to remove duplicates within a cell in Excel

Like any other Excel function, our UDF will automatically recalculate when the source data changes, so your results will always be up to date.

VBA macro that deletes duplicate text in multiple cells at once

If you want to delete duplicate text in multiple cells at once, you can call the RemoveDupeWords function in the macro. In this case, the delimiter is hardcoded, and you have to update the macro's code every time the delimiter changes. Alternatively, you could write some code variation for the most common delimiters such as spaces, commas or commas and spaces and give your macros a meaningful name, such as RemoveDupesDelimSpace .

The macro code is as follows:

 Public Sub RemoveDupeWords2()
  Dim cell As Range
  For Each cell In Application.Selection
    cell.Value = RemoveDupeWords(cell.Value, ", ")
  Next
End Sub
Copy after login

In the above code, the separator is a comma and a space . To use a different delimiter, replace ", " with other characters in the following line of code:

cell.Value = RemoveDupeWords(cell.Value, ", ")

Notice. For the macro to work properly, its code and the code of the RemoveDupeWords function must be placed in the same module.

How to use macros

Insert the macro code into your own workbook or open a sample workbook containing the code and perform the following steps to run the macro.

  1. Select the range of cells from which you want to remove duplicate text.
  2. Press Alt F8 to open the macro dialog box.
  3. In the list of macros, select RemoveDupeWords2 .
  4. Click Run . How to remove duplicates within a cell in Excel

For more details, see How to run macros in Excel.

Notice. Since macro operations cannot be undoped , we strongly recommend that you save your workbook before using the macro. This way, if something goes wrong, you can simply close and reopen the workbook and you will return to where you were before. Alternatively, you can copy only sheets that may be affected by macros.

How to remove duplicate characters in a cell

Problem: There are multiple identical characters in a cell, and each cell should contain only a single occurrence of the given character.

Solution: Customize user-defined functions or VBA macros.

How to remove duplicates within a cell in Excel

User-defined functions that remove duplicate characters

To remove duplicate characters in a cell, keeping only the first occurrence of characters, you can use the following custom user-defined function called RemoveDupeChars :

 Function RemoveDupeChars(text As String) As String
  Dim dictionary As Object
  Dim char As String
  Dim result As String
  Set dictionary = CreateObject("Scripting.Dictionary")
  For i = 1 To Len(text)
    char = Mid(text, i, 1)
    If Not dictionary.Exists(char) Then
      dictionary.Add char, Nothing
      result = result & char
    End If
  Next
  RemoveDupeChars = result
  Set dictionary = Nothing
End Function
Copy after login

To insert function code into your workbook, the steps are exactly the same as the previous example.

RemoveDupeChars function syntax

The syntax of this custom function is as simple as possible - only one parameter is required:

RemoveDupeChars(text) where text is a string or cell from which duplicate characters are to be removed.

This function is case sensitive and treats lowercase and uppercase letters as different characters.

How to use the RemoveDupeChars function

Everything that we said about RemoveDupeWords works with RemoveDupeChars . So, without too much theory, let's go straight to the example.

To remove duplicate characters from column A (starting from A2), enter this formula in B2 and copy it below:

=RemoveDupeChars(A2)

As shown in the figure below, the function successfully handles different character types, including letters, numbers and special symbols:

How to remove duplicates within a cell in Excel

hint. If your characters are separated from each other by certain delimiters such as spaces, commas, or hyphen, then use the RemoveDupeWords function shown in the previous example.

Delete VBA macros with the same characters in a cell

Like RemoveDupeWords , the RemoveDupeChars function can also be called in macros:

 Public Sub RemoveDupeChars2()
  Dim cell As Range
  For Each cell In Application.Selection
    cell.Value = RemoveDupeChars(cell.Value)
  Next
End Sub
Copy after login

Because this UDF does not use any separators, you do not need to make any adjustments in your code.

Notice. For the macro to work properly, its code and the code of RemoveDupeChars UDF must be placed in the same module in the VBA editor.

How to use macros

Assuming you have inserted the macro code into your workbook or opened a sample workbook containing the code, start the macro as follows.

  1. Select the range of cells from which you want to remove duplicate characters.
  2. Press Alt F8 to open the macro dialog box.
  3. In the list of macros, select RemoveDupeChars2 .
  4. Click Run . How to remove duplicates within a cell in Excel

Use Ultimate Suite to delete duplicate substrings

At the beginning of this tutorial, it is mentioned that Microsoft Excel does not have built-in functionality to delete duplicates within cells. But our Ultimate Suite can!

You can find it in the Duplicate Remover drop-down menu on the Ablebits Data tab, located in the Dedupe group. If the Remove Duplicate Substrings option does not appear in your Excel, make sure you have the latest version of Ultimate Suite installed (a free trial available here).

How to remove duplicates within a cell in Excel

To remove duplicate words or text from multiple cells at 5 seconds (each step), you need to do the following:

  1. Select your source data and start the Remove Duplicate Substrings tool.
  2. Specify a separator .
  3. Defines whether to treat consecutive delimiters as one (default).
  4. Choose to perform a case-sensitive or case-insensitive search.
  5. Click Delete .

Completed! No VBA or formulas are required, just quick and accurate results.

How to remove duplicates within a cell in Excel

To learn more about this powerful add-in, visit its homepage. Or better yet, download the evaluation version below and try it out!

This is how to delete duplicate text in a cell. Thank you for reading and hope to see you next week on our blog!

Downloadable resources

Example of deleting duplicates in a cell (.xlsm file) Ultimate Suite 14-day full feature version (.exe file)

The above is the detailed content of How to remove duplicates within a cell in Excel. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to add calendar to Outlook: shared, Internet calendar, iCal file How to add calendar to Outlook: shared, Internet calendar, iCal file Apr 03, 2025 am 09:06 AM

This article explains how to access and utilize shared calendars within the Outlook desktop application, including importing iCalendar files. Previously, we covered sharing your Outlook calendar. Now, let's explore how to view calendars shared with

How to use Flash Fill in Excel with examples How to use Flash Fill in Excel with examples Apr 05, 2025 am 09:15 AM

This tutorial provides a comprehensive guide to Excel's Flash Fill feature, a powerful tool for automating data entry tasks. It covers various aspects, from its definition and location to advanced usage and troubleshooting. Understanding Excel's Fla

MEDIAN formula in Excel - practical examples MEDIAN formula in Excel - practical examples Apr 11, 2025 pm 12:08 PM

This tutorial explains how to calculate the median of numerical data in Excel using the MEDIAN function. The median, a key measure of central tendency, identifies the middle value in a dataset, offering a more robust representation of central tenden

How to import contacts to Outlook (from CSV and PST file) How to import contacts to Outlook (from CSV and PST file) Apr 02, 2025 am 09:09 AM

This tutorial demonstrates two methods for importing contacts into Outlook: using CSV and PST files, and also covers transferring contacts to Outlook Online. Whether you're consolidating data from an external source, migrating from another email pro

How to use Google Sheets QUERY function – standard clauses and an alternative tool How to use Google Sheets QUERY function – standard clauses and an alternative tool Apr 02, 2025 am 09:21 AM

This comprehensive guide unlocks the power of Google Sheets' QUERY function, often hailed as the most potent spreadsheet function. We'll dissect its syntax and explore its various clauses to master data manipulation. Understanding the Google Sheet

How to enable and disable macros in Excel How to enable and disable macros in Excel Apr 02, 2025 am 09:05 AM

This article explores how to enable macros in Excel, covering macro security basics and safe VBA code execution. Macros, like any technology, have dual potential—beneficial automation or malicious use. Excel's default setting disables macros for sa

Excel shared workbook: How to share Excel file for multiple users Excel shared workbook: How to share Excel file for multiple users Apr 11, 2025 am 11:58 AM

This tutorial provides a comprehensive guide to sharing Excel workbooks, covering various methods, access control, and conflict resolution. Modern Excel versions (2010, 2013, 2016, and later) simplify collaborative editing, eliminating the need to m

How to use Google Sheets FILTER function How to use Google Sheets FILTER function Apr 02, 2025 am 09:19 AM

Unlock the Power of Google Sheets' FILTER Function: A Comprehensive Guide Tired of basic Google Sheets filtering? This guide unveils the capabilities of the FILTER function, offering a powerful alternative to the standard filtering tool. We'll explo

See all articles