Return Col A 的值,其中 Col B 最高

Return Value of Col A where col B is highest

Google 电子表格中 我有 col ACol B

Col A : Name of a person exemple
Col B : Grade

我希望能够在class中显示最好的结果是:XYZ

我尝试了多个公式,但总是报错,找不到解决方案。

我为大家提供了一个 spreadsheet 来帮助我。

无法访问您的 sheet,但通常您应该能够通过使用 filter() 和 max.

获得所需的输出

例如:

=filter(A:A; B:B=max(B:B))

注意:根据您的语言环境,您可能需要将分号替换为逗号。