Sign in to join the conversation:
I have two columns... one with names and one with scores. I need a formula that will show the name of the person with the highest score. Is that possible?
It is very possible in a number of different ways. I would start with something along the lines of this.
=INDEX([Name Column]:[Name Column], MATCH(MAX([Score Column]:[Score Column]), [Score Column]:[Score Column]))
Having a last name in the last part of the alphabet, I must call attention to the fact that INDEX(MATCH()) is not a good formula for this case.
Paul's example will return the first (and only) name that has a high score.
If there are two or more, well, it must be nice to have a last name like Aardvark.
Here's one that will return the names of the highest score, separated by a comma.
=JOIN(COLLECT(Name:Name, Score:Score, MAX(Score:Score)), ",")
Name = [Name Column], and so on in Paul's formula.
Craig
Craig is correct. My formula will only return 1 name which will be the name that is closest to the top of the list regardless of sort order (although lists of names are typically sorted alphabetically which would give Mr. Aardvark an advantage).
This is because the MATCH function will return the first location number in which the high score resides. This in turn will determine which row the INDEX pulls from.
If there is something built in to avoid having duplicate scores, this will work.
Otherwise you will need to use Craig's solution (which is usually my first choice for something like this but for some reason slipped my mind this time around).
.
Thanks for the catch, Craig. I usually do go with a JOIN/COLLECT when there is the possibility of multiple returns. I don't know why I didn't this time.
I thought it was Ms Aardvark, because women are smarter than men, but YMMV
Yup. Caught me again. Ms. Aardvark. Haha.
(wink)
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?