Suggested formula not working

I found out you can't return a column name in a formula, so I added them into the first row. I am trying to find the name of the fruit associated with the highest value, 2nd highest value, etc.
Smartsheets suggests: =INDEX([Apple]1:[Clementine]1, MATCH(MAX([Apple]2:[Clementine]2), [Apple]2:[Clementine]2, 0)) but I get an error every time. Anyone see something I'm missing?
Best Answer
-
=INDEX([Apple]1:[Clementine]1, 1, MATCH(MAX([Apple]2:[Clementine]2), [Apple]2:[Clementine]2, 0))
Add 1 before your
MATCH
function since you will be looking at a single row. YourMATCH
function will provide the column arguement of theINDEX
function....
Answers
-
=INDEX([Apple]1:[Clementine]1, 1, MATCH(MAX([Apple]2:[Clementine]2), [Apple]2:[Clementine]2, 0))
Add 1 before your
MATCH
function since you will be looking at a single row. YourMATCH
function will provide the column arguement of theINDEX
function....
-
thank you @heyjay! That worked! Suggestions for if I wanted to find the 2nd, 3rd 4th largest and so on?
-
I would suggest getting rid of the MAX function and using a LARGE function. That way you can use cell references for 1st, 2nd, 3rd, etc. to make drag-filling the formula easier and it is the same formula for each number (you would have to use the LARGE for 2nd+ anyway).
=INDEX($[Apple]$1:$[Clementine]$1, 1, MATCH(LARGE($[Apple]2:$[Clementine]2, VALUE(LEFT(Apple$14))), $[Apple]2:$[Clementine]2, 0))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!