Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Having a little issue with Google Spreadsheets.

What I have is a column of data that has the some of the same values in it. What I want to detect is if that row is unique. If it is, echo 'unique' (or something) but if it's not count the number of duplicates in the column and echo that number.

Example of what I want:

COL A     RESULT COLUMN
Apple     Unique
Banana    Unique
Banana    3
Banana    3
Cherry    Unique
Date      Unique
Date      2

Example of what I have using this code (=IF(A1=A2, "Duplicate", "Unique")):

COL A     RESULT COLUMN
Apple     Unique
Banana    Unique
Banana    DUPLICATE
Banana    DUPLICATE
Cherry    Unique
Date      Unique
Date      DUPLICATE

I guess what I really need is a query inserted(?) into where the 'Duplicate' text is in that formula that will count down the same cell values until it sees a different value, and echo that number.

If it can be done within the same column excellent. If I need another column and have to perform 2 sets of queries I can compromise.

Big thanks to those who can help.

Dave

UPDATE BASED ON DATATOO ANSWER

I ran that query, modified column 'A' to 'E' and this is what returned.

City Country Merge  Duplicate City Country
Aberdeen, UK    Unique
Aberdeen, UK    2
Bangor, UK          2
Bath, UK            Unique
Belfast, UK         Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique
Birmingham, UK  Unique

As you can see this doesn't count right. Thoughts?

share|improve this question
do you want the first instance of a row to display "unique" as in your example, or do you want only unique rows to display that? for instance banana is not truly unique a unique row – datatoo Jul 20 '11 at 4:35
I know banana is not truly a unique row as there are multiple other rows containing banana, however I do want the first instace of banana to display as unique. – davebowker Jul 25 '11 at 12:58

2 Answers

up vote 0 down vote accepted

I know this is an old question, but I see that it was never satisfactorily answered, so I hope this is still useful.

You want this:

=if(COUNTIF($A$1:$A1,A1)=1, "UNIQUE", COUNTIF($A$1:$A$7,A1))

This will fill down and look like this in subsequent rows:

=if(COUNTIF($A$1:$A2,A2)=1, "UNIQUE", COUNTIF($A$1:$A$7,A2))
=if(COUNTIF($A$1:$A3,A3)=1, "UNIQUE", COUNTIF($A$1:$A$7,A3))
...

And these are the results (assuming the formula was inserted into B1 and filled down):

    A         B
1 Apple     UNIQUE
2 Banana    UNIQUE
3 Banana    3
4 Banana    3
5 Cherry    UNIQUE
6 Date      UNIQUE
7 Date      2

The key to your problem is that you're looking for the first occurrence of the string to count as unique, then you count the duplicates. So, for the first part of the formula, you're really only searching the list so far, not the entire list.

This method also has the added advantage of working with an unsorted list as well as a sorted one.

share|improve this answer
Thanks. It is an old question for an old project, but this answer is perfect. Hopefully it will help someone else. Thanks! – davebowker Jan 15 at 14:09

I know your example shows banana as unique, and you may be asking for the first instance of a row to display that way, but if not.....

=IF(COUNTIF($A$1:$A$7,A1)=1,"Unique",COUNTIF($A$1:$A$7,A1))

apologies if you truly intend the first row of an item to show as unique

share|improve this answer
Hey Datatoo, thanks for this but yes I do intend to show the first row as 'unique'. Also, this doesn't seem to work exactly. My actual column is column E, so I replaced all instances of 'A' with 'E' -- that right? Have updated question above with results on this solution. Needs more adjusting. Thanks for helping on this. – davebowker Jul 20 '11 at 11:46
The error with the counts being wrong is likely caused by spaces in the string, so "Birmingham, UK" is different than "Birmingham, UK " which means you might add Trim to the mix. May we see an actual copy of the formula that you are now using which supplies the first "Unique" also? Or perhaps I am misunderstanding your cell columns – datatoo Jul 20 '11 at 13:42
@davebowker Column E is the City? from your example it is hard to tell. How are you using Merge and Duplicate? – datatoo Jul 21 '11 at 2:19
Here's a link to a section of the actual dataset. spreadsheets.google.com/a/davebowker.com/spreadsheet/… – davebowker Jul 25 '11 at 12:59
And... here's my formulas =CONCATENATE(C2,", ",D2) --- this makes column E =IF(E1=E2, "Duplicate", "Unique") -- this checks the cell against the cell above to see if it's a unique or a duplicate. In my mind, I need to replace where it says 'Duplicate' above to count just how many duplicates there are? Again, thanks for helping with this. – davebowker Jul 25 '11 at 13:01
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.