Google-sheets – Referencing to cell value

google sheets

I have a column of un-ordered numbers along with a column of names. In a different sheet I calculate the Max of the numbers column with the formula:

 =MAX('Form Responses 1'!E:E)

Now I would like to find what name belongs to that max value.

Best Answer

MATCH the determined max value in the column of numbers and apply the result from that in an INDEX function applied to the column of names. Issues may arise if the max value is not unique.