如何使用excel中的其他列值获取最大值和最小值?

时间:2021-02-08 20:11:11

I want to get max and min values with other column's values in ms excel 2007. I have two columns

我希望在ms excel 2007中使用其他列的值获取最大值和最小值。我有两列

| Column A | Column B |
-----------------------
|A         |   18     |
-----------------------
|B         |   78     |
-----------------------
|c         |   9      |

I want to print out max values and min values of "Column B" with "Column A" values. Please suggest me some formula.

我想用“A列”值打印出“B列”的最大值和最小值。请建议我一些配方。

2 个解决方案

#1


3  

The following formula will find the max value in column B, and return the value from column A that is in the same row:

以下公式将在B列中找到最大值,并返回同一行中A列的值:

=INDEX(A:A,(MATCH(MAX(B:B),B:B,0)))

In your example, the result would be "B".

在您的示例中,结果将为“B”。

Note that if the max value occurs in column B more than once, only the first one will be processed with this formula.

请注意,如果B列中出现的最大值不止一次,则只会使用此公式处理第一个值。

For minimum, just substitute MIN in place of MAX.

最低限度,只需用MIN代替MAX即可。

#2


0  

One way: select a cell to output the data to e.g. D2. Then choose

一种方法:选择一个单元格将数据输出到例如D2。然后选择

Data > Consolidate...Function:Min, Reference:$A:$B, Use labels in: Left Column

数据>合并...功能:最小,参考:$ A:$ B,使用标签:左列

and repeat with Function: Max.

并使用Function:Max重复。

Another way: use a pivot table.

另一种方法:使用数据透视表。

#1


3  

The following formula will find the max value in column B, and return the value from column A that is in the same row:

以下公式将在B列中找到最大值,并返回同一行中A列的值:

=INDEX(A:A,(MATCH(MAX(B:B),B:B,0)))

In your example, the result would be "B".

在您的示例中,结果将为“B”。

Note that if the max value occurs in column B more than once, only the first one will be processed with this formula.

请注意,如果B列中出现的最大值不止一次,则只会使用此公式处理第一个值。

For minimum, just substitute MIN in place of MAX.

最低限度,只需用MIN代替MAX即可。

#2


0  

One way: select a cell to output the data to e.g. D2. Then choose

一种方法:选择一个单元格将数据输出到例如D2。然后选择

Data > Consolidate...Function:Min, Reference:$A:$B, Use labels in: Left Column

数据>合并...功能:最小,参考:$ A:$ B,使用标签:左列

and repeat with Function: Max.

并使用Function:Max重复。

Another way: use a pivot table.

另一种方法:使用数据透视表。