fbpx
Search
Close this search box.

How to Get Unique Items using Excel

Share

Facebook
Twitter
LinkedIn

I recently had to perform some analysis on a set of insurance companies in certain geography. After searching the net I found such list of companies operating in that continent. But the problem is,

  • These companies are listed multiple times, one time for each of their geographical area of operation.
  • I cannot count each company only once since there is geography specific operational data in that list.
  • But at the same time, information pertaining to organization like total sales, strategy etc. are common to all the subsidiaries / separate entities of a company.
  • There are too many companies to do the manual grouping of companies

I think this type of problems are fairly common in business analytics. So here is a relatively simple solution for getting unique list of companies without losing any information or writing macros. See the example for yourself.

Lets take an example of employee data. You have fields like Person Name (sometimes unique), Previous employment, Previous workplace, Previous Salary. Now, if person Anand worked in more than one place earlier, there will be more than one rows with his name. But for details like DOB, SSN etc. there wont be multiple rows. So you need to know how many uniques rows are there in that huge list. Detailed Steps:

  1. Enter / copy the data
  2. Sort the list on person name
  3. In the column next to prev-company enter the following formula in E2
    =IF(OR(LEFT(B2,SEARCH(" ",B2))=LEFT(B3,SEARCH(" ",B3)),LEFT(B2,SEARCH(" ",B2))=LEFT(B1,SEARCH(" ",B1))),LEFT(B2,SEARCH(" ",B2)),B2)

    Copy – paste the formula in all the cells in the list for the column. You will see the followin result.
  4. Now create one more column next to Unique Name with heading Unique?. Paste the following formula in the F2. Apply the formula to all the cells in the list.

    =IF(E2=E3,0,1)

    Now, you would see the list like this.

  5. Now sellect the top row and apply “auto filters” [Data->Filter->Auto-Filter] And select 1 in the Unique? column. You will see all the unique names. You can copy paste this list in another sheet/work-book and work with it or assign corresponding codes to each of the unique items in this list.

To summerize:

1. Sort your list first.
2. Get the unique parts like first word / first number etc in another column. In my case I had to use first word.
3. Compare consecutive rows and mark the differences. Now you know how many unique items you have.

Comments / Any better ways of doing this are always welcome.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Excel School made me great at work.
5/5

– Brenda

Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

letter grades from test scores in Excel

How to convert test scores to letter grades in Excel?

We can use Excel’s LOOKUP function to quickly convert exam or test scores to letter grades like A+ or F. In this article, let me explain the process and necessary formulas. I will also share a technique to calculate letter grades from test scores using percentiles.

12 Responses to “How to Get Unique Items using Excel”

  1. Akshat says:

    It might be obvious for some but for copying the unique rows after auto filter, one will have to use
    Edit->GoTo->Special->Visible Cells only
    To copy those unique rows!

    Btw an excel blog will be helpful for many out there 🙂

  2. Chandoo says:

    Yeah, you are right. I am using Excel 2003, so you can directly copy-paste and it will paste only visible cells.

    • SAlan says:

      I know this is an old thread but I'm having trouble figuring out how to formulate for multiple cells with drop down boxes where I only want in put in one of them. Example: C3 C4 C5 contain different tax categories and I cant allow the accidental input of more than one category. I know I've done this in the past but I'm drawing a complete blank now.

  3. [...] in existence since 2004, I did not start writing about excel until 2006. My first post on excel is How to remove duplicates. This was not written on chandoo.org, but on my excel blog r1c1.blogspot.com which I later imported [...]

  4. [...] is no wonder that I have written extensively about it (here: 1, 2, 3, 4, 5, 6, 7, [...]

  5. Shady Hassan Fouad says:

    Greetings from Cairo, Egypt! Here's another technique that is quite fast and easy.

    Use a pivot table with only one column (the one you want the unique values from). Pivot Tables always dispay unique values.

  6. isaac says:

    I haven't used Pivot Tables much...but I set one up for this function. Works very well. I'm wondering, is there some way to set the Pivot Table to automatically update when my source list is modified?

  7. Omo says:

    A quick alternative is to use the Advanced Filter method (Alt+D+F+A) on the column range of interest. Selecting the 'Copy to Another Location' and 'Unique Records Only' options and entering the chosen destination range will achieve the same ends.

  8. Ikhlaque says:

    what are the ways if I only want one duplicate out of ten and also at the same time unique values...not want to remove all duplicates but want to keep one of them..

Leave a Reply