Looked around, but could not quite get this to work. I think it's really easy, but match and index functions are tripping me up.
Here's the example. I have three columns of data:
Name Date Score Desired Output
Peter 8/11 80 Wrong Day
John 8/12 50 1
Peter 8/12 40 1
Sarah 8/12 30 1
Peter 8/12 20 2
Lindsay 8/12 5 1
Peter 8/12 3 3
See desired output. In short, I want to look at the list (I've sorted it by Score) and give me for all scores belonging to one person, the rank of that score on the desired day. So I want to look at all people on one day (8/12 in this case) and then group the scores by person, and return the rank of the score for that person. I would know anything with a "1" is the top score for that person on 8/12.
Any ideas? Would rather not use PivotTable. Want a formula for column D