About 65,200 results
Open links in new tab
  1. Delete duplicate items in Excel (including original value)

    Mar 5, 2012 · 3 How about Conditional Formatting --> Highlight cell rules --> Duplicate values Duplicate values now highlighted. Apply filter, sort by colour, delete all highlighted cells - that only leaves …

  2. How to delete duplicate items on sharepoint list using PowerAutomate ...

    Jun 10, 2025 · I have tried using Selet/compose but am unable to get it to remove any duplicate rows. In short -- is there a simple way to use PowerAutomate to remove duplicate rows in a sharepoint list?

  3. Excel - Remove duplicates and SUM at the same time

    Jun 16, 2016 · Excel - Remove duplicates and SUM at the same time Asked 9 years, 5 months ago Modified 9 years, 5 months ago Viewed 17k times

  4. Excel VBA: How To Remove Duplicate Values From Table?

    Apr 21, 2018 · Thoroughly searched StackOverflow and Google but didn't find answer to this. Trying to remove duplicate values from a table in Excel (not just spreadsheet) Current code: Sub …

  5. excel - Remove duplicates from array using VBA - Stack Overflow

    Remove duplicates (plus related row items) from array As OP wanted a VBA solution close to RemoveDuplicates, I demonstrate an array approach using a dictionary to get not the unique items …

  6. Remove Duplicates from range of cells in excel vba

    If you got only one column in the range to clean, just add " (1)" to the end. It indicates in wich column of the range Excel will remove the duplicates. Something like:

  7. Remove duplicate Outlook items from a folder - Stack Overflow

    Jan 8, 2016 · The approach below: Provides users with a prompt to select the folder to process Checks duplicates on the base of Subject, Sender, CreationTime and Size Moved (rather than delete) any …

  8. power automate - Delete partial duplicate rows - Stack Overflow

    Feb 24, 2022 · Delete partial duplicate rows Asked 3 years, 9 months ago Modified 2 years, 5 months ago Viewed 1k times

  9. Ignore Duplicates and Create New List of Unique Values in Excel

    Nov 9, 2012 · Lets consider an example, Column A consists Email address in which some are duplicate, so in Column 2, I used the above stated formula which in results displayed me the 2 duplicates cells …

  10. excel - VBA Remove Duplicates in a column - Stack Overflow

    Oct 26, 2015 · As SwedishProgrammer has pointed out - change your RemoveDuplicates row to rng1.RemoveDuplicates Columns:=Array(1, 2), Header:=xlNo to check both columns for duplicates, …