I have list of almost 20000 email addresses in Excel sheet. I am only interested in duplicate values. Can I somehow extract them.
How to fetch duplicate records from Excel sheet
389 Views Asked by Ravi K M At
2
There are 2 best solutions below
0
TMH8885
On
The easiest way would be to use conditional formatting. Select all of your cells that you're looking for duplicates in, then select Conditional Formatting > Highlight Cells Rules > Duplicate Values. Click ok, so all duplicates will be highlighted with a light red. From there, you can use a filter to only show these values, or show all values that are not duplicates and delete them.
Related Questions in EXCEL
- Concatenate excel cell string within cell reference string
- Use hidden information for filtering data
- Using Vlookup in Excel sheet to match substring
- Import from api into multiple excel cells
- Loop through list of files and open them
- Pull and push data from and into sql databases using Excel VBA without pasting the data in Excel sheets
- Loop with equation for upper limit
- excel vba null value in array
- Why is my xml file having these after convert from excel?
- TextToColumns function uses wrong delimiter
- Difference between two dates in excel 2013
- Concatenate string and number as number
- Why in a pivot the "include new items in manual filter" option is grey out when source is a powerpivot?
- Count Unique Values Repeated Dates
- How do I extract info from crunchbase
Related Questions in EXCEL-FORMULA
- Concatenate excel cell string within cell reference string
- Use hidden information for filtering data
- Using Vlookup in Excel sheet to match substring
- Find Partial Matching data across two sheets
- Nesting IF and OR statements
- is there a shortcut to open filter>contains box in excel?
- Excel Conditional Formatting: If TableColumn = value1 AND ValueFromSameRowButAnotherColumn = value2
- Excel formula to count how many times work was carried out on a weekend between the hours of 17:00 and 19:00
- Excel Formula - IF & "X" > 0
- Excel search and match two cells in the same row for multiple rows
- Ranking with subsets
- Excel with AND, IF, MAX
- Excel time sheets
- sumifs on excel linked sql server query with date
- Determine longest date range, from two date ranges - Excel
Related Questions in EXCEL-2010
- Creating a dynamic charting macro in VB
- plot two data sets on same chart
- Excel with AND, IF, MAX
- Excel 2010 Ribbon Calling Macros
- How to find and highlight all occurrences of multiple strings within the ActiveSheet?
- How do I populate an Excel field with changing web data?
- Addition for two dimensional Excel
- Paste the current date into a pre-defined range named within a cell
- Trying to use excel formula or VBA
- Excel Advanced Filter string equal to AND string Not equal to
- Export Cells to Email based off range of dates using VBA
- PasteSpecial method of range class fails in Function
- Excel 2010 - conditional formatting a column
- MS Excel 2010 - VBA to lookup in one column a customer number and Tag the corresponding column with Yes or No
- Connection String Error in OleDB
Related Questions in SPREADSHEET
- Have excel return a cell if value is between the value of two cells
- How to keep value type in Nokogiri?
- Google apps script for Spreadsheet - russian symbol substitute as a question mark
- Read date from =TODAY() formula with spreadsheet gem
- Spreadsheet and address: how to filter based on a range
- Extract matching data from varying number of row
- How to validate a whether a cell has exactly 10 digits in spreadjs?
- How to split this string into separate column in spreadsheet?
- ImportRange Script Quietly catch errors
- Issue with subsetting data; not picking up observations for one category
- Google sheets: swap column value if present
- Excel - Pulling data from one cell within a list
- Store Google Form Responses in 3 different spreadsheets depending on form choices
- Drag and copy range vertically from spreadsheet google
- Range not changing when using a QUERY inside an ARRAYFORMULA
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you are just looking to remove the duplicates completely you could open up VBA by pressing Alt + F11 and enter the following code in to a new macro:
This will remove all duplicates from the A column only, so if you need other (linked) columns removing too then you will need to adjust the code. Thankfully Microsoft provide reasonable support on this function here.
Similarly you may need to adjust the range to match the amount of data in the list. I believe the range A:A should be sufficient for any length list, but I am unable to test it at the moment.
Edit: Since adding this answer, Microsoft have rolled out many new functions as part of Microsoft 365 that make this kind of task significantly easier to complete with standard formulae. For example, you can now use the UNIQUE function to return the list of unique values. The help documentation is here, but the formula would look something like this: