I've got a vexing problem. A big data set is structured as follows: Name score1 score2 score3 Name2 score 1 score2 ...
Jane 94 88 97 Bob 85 93 75 John 96 93 31
Mary 88 76 85 Jack 96 87 32 Fred 95 99 92
...
I need to be able to get the name of the person with lowest score in the third column of their scores. Hence:
31 John
32 Jack
I'm a bit stuck on Index(match) in that I can't figure out how to move the match to the left three columns.
Cheers
Jane 94 88 97 Bob 85 93 75 John 96 93 31
Mary 88 76 85 Jack 96 87 32 Fred 95 99 92
...
I need to be able to get the name of the person with lowest score in the third column of their scores. Hence:
31 John
32 Jack
I'm a bit stuck on Index(match) in that I can't figure out how to move the match to the left three columns.
Cheers