Share via

Finding unique names

Anonymous
2015-05-28T09:43:28+00:00

I need to find a list of  the unique names in a column containing many entries of the same name.   Many years ago, Lotus 123 had a function called RUNIQUE which listed one occurrence of each 'name' from a column of multiple names.   As I don't know what the names are, I can't use COUNTIF etc.

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2015-05-28T11:52:55+00:00

Why don't you use Remove duplicates. 

Just in case, Copy the column to a new column with the same set of data. Select this column alone and click data --> Remove duplicates to get list of unique values.

Was this answer helpful?

0 comments No comments

Answer accepted by question author

Anonymous
2015-05-28T09:55:32+00:00

Hi,

If you want to pull out the unique names to a new column you can use this array formula, see below for how to enter it. ARRAY enter the formula in cell E2 and drag down

=IFERROR(INDEX($A$1:$A$20,MATCH(0,IF(ISBLANK($A$1:$A$20),"",COUNTIF(E$1:$E1,$A$1:$A$20)),0)),"")

Note if you put the formula into a different cell then the bold bit in the formula must refer to the cell above where you put it.

This is an array formula which must be entered by pressing CTRL+Shift+Enter

and not just Enter. If you do it correctly then Excel will put curly brackets

around the formula {}. You can't type these yourself. If you edit the formula

you must enter it again with CTRL+Shift+Enter.

Was this answer helpful?

0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Ashish Mathur 101.9K Reputation points Volunteer Moderator
    2015-05-28T23:35:11+00:00

    Hi,

    You may refer to my solution at this link - http://www.ashishmathur.com/dynamically-extract-unique-values-with-no-conditions/.

    Hope this helps.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-05-28T12:17:22+00:00

    Thanks to both respondent's - each solution seems to provide the right result.

    Was this answer helpful?

    0 comments No comments