for example I have a list of names:
- Bob
- Bob
- Greg
- Joe
Expected results:
- Bob Duplicate
- Bob Duplicate
- Greg Unique
- Joe Unique
I have done this already by doing a count on query editor then counting anything > 1 to give me the results but surely theres an easier way! (1 step process) Thank you in advance :)
I have a solution to propose, but you will probably found it long. Maybe there is something shorter and more efficient.
I called your column with this list of name "Name of people".
First of all I added an index.
I then grouped by the column of people with names.
The grouping indicate, if it is above 1, that this is a duplicate.
I then added a column which combines the person name and either "unique" or "duplicate" if we have a 1 or above 1.
I have the following power query: