确定单个单元格中两个矩阵的最大值

时间:2018-08-01 10:06:29

标签: arrays excel matrix max array-formulas

我在Excel中有两个名为Matrix1和Matrix2的单列矩阵,例如:

Matrix1  Matrix 2
    0       7
    3       8
    9       3
    5       2
    1       6

我想确定每行总和的最大值,我认为使用数组公式是可行的,但我无法找到有效的解决方案。所以基本上我想做的是以下操作,但是在一个单元格中:

Matrix1  Matrix2  Matrix3
    0       7       =index(Matrix1;1) + index(Matrix2;1)
    3       8       =index(Matrix1;2) + index(Matrix2;2)
    9       3       =index(Matrix1;3) + index(Matrix2;3)
    5       2       =index(Matrix1;4) + index(Matrix2;4)
    1       6       =index(Matrix1;5) + index(Matrix2;5)

Result = Max(Matrix3)

在单凝胶细胞中有可能吗?

也许有些启发,请看一下这篇文章:

https://superuser.com/questions/373588/how-do-i-calculate-the-sum-of-2-columns-using-the-max-from-each-row

1 个答案:

答案 0 :(得分:1)

尝试

=MAX(INDEX((A2:A6)+(B2:B6), , ))

enter image description here