Hi
So I have a list of data, like this
tom Tim
John Paul
Tom John
I want to find a way to tell me how many times a name has appeared, so in this example my 2 new columns telling me this would be
tom Tim 1 1
John Paul 1 1
Tom John 2 2
Sally Tom 1 3
So in the third row both Tom and John are shown as the number 2, because they have already appeared in one of the two columns once each. In the forth row sally is a 1 as it is the first time her name has appeared, but tom is a 3 as it is the third time his name has appeared.
Any help is greatly appreciated.
Bookmarks