[quote=“1920s Style “Death Ray”, post:22, topic:521453”]
You can use the following formula in Excel to remove the trailing spaces.
=IF(RIGHT(A1,1)=" ",LEFT(A1,LEN(A1)-1),A1)
Where “A1” is the cell that the offending text resides in. It will overlook text that does not have a trailing space.
Probably easier to just use IE though :(.
[/QUOTE]
I have one sheet with everyone’s lists in. I copy & paste the list of names into that sheet (the List sheet). I have a second sheet with just a list of all the names (the Name sheet).
When I copy a new person’s list into the List sheet, it tells me against each name how many times that celebrity has been nominated. If that number is a “1”, I know this is a new celebrity. I then copy all new celebrities to the Name sheet.
When a celebrity dies, I put their age at death in the Name sheet, which calculates the points scored for nominating that celebrity. For every occurrence of that name in the List sheet, the number of points is added to the total points for the person who named the celebrity.
Hence there is a lot of comparing across lists and sheets. I never actually reference the text in another cell, and hence cannot do the string functions you suggest other than if I paste the cells in in another place, then reference them as you suggest. I am using COUNTIF and SUMIF, and the comparisons have to be identical - I cannot have one list with a space at the end of names and the other not.
(I also have a third sheet that calculates the positions of the players, but that does not compare celebrity names anywhere.)
But thanks for trying to help me out.