I am trying to find first highest number and second highest number in excel. What shall i do for that. I did not find the right formula.
我试图在excel中找到第一个最高的数字和第二高的数字。我该怎么办呢?我没有找到正确的公式。
Note: I have already used the large and max formula.
注意:我已经使用了大的和最大的公式。
=LARGE(E4:E9;1)
edit: guys I know if i write 2 instead of 1 i will get the result but i have to click the mouse to see all result.
编辑:我知道如果我写2而不是1,我将得到结果,但我必须点击鼠标才能看到所有的结果。
2 个解决方案
#1
26
If you want the second highest number you can use
如果你想要第二个最高的数字,你可以使用
=LARGE(E4:E9;2)
=大(E4:E9;2)
although that doesn't account for duplicates so you could get the same result as the Max
虽然这不能解释重复,所以你可以得到和最大值一样的结果。
If you want the largest number that is smaller than the maximum number you can use this version
如果你想要最大的数字小于最大的数字,你可以使用这个版本
=LARGE(E4:E9;COUNTIF(E4:E9;MAX(E4:E9))+1)
=大(E4:E9;条件统计(E4:E9;马克斯(E4:E9))+ 1)
#2
2
OK I found it.
我找到了。
=LARGE($E$4:$E$9;A12)
=大(E 4美元:E 9美元;A12)
=large(array, k)
=大(数组,k)
Array Required. The array or range of data for which you want to determine the k-th largest value.
数组。要确定第k大值的数据的数组或范围。
K Required. The position (from the largest) in the array or cell range of data to return.
K。数组或单元格范围内要返回的数据的位置(从最大的位置)。
#1
26
If you want the second highest number you can use
如果你想要第二个最高的数字,你可以使用
=LARGE(E4:E9;2)
=大(E4:E9;2)
although that doesn't account for duplicates so you could get the same result as the Max
虽然这不能解释重复,所以你可以得到和最大值一样的结果。
If you want the largest number that is smaller than the maximum number you can use this version
如果你想要最大的数字小于最大的数字,你可以使用这个版本
=LARGE(E4:E9;COUNTIF(E4:E9;MAX(E4:E9))+1)
=大(E4:E9;条件统计(E4:E9;马克斯(E4:E9))+ 1)
#2
2
OK I found it.
我找到了。
=LARGE($E$4:$E$9;A12)
=大(E 4美元:E 9美元;A12)
=large(array, k)
=大(数组,k)
Array Required. The array or range of data for which you want to determine the k-th largest value.
数组。要确定第k大值的数据的数组或范围。
K Required. The position (from the largest) in the array or cell range of data to return.
K。数组或单元格范围内要返回的数据的位置(从最大的位置)。