本文介绍了电子表格公式用于求和列值的总和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

给定一个包含两列的电子表格,比如A和B,每个列都包含n个值,所有文本;是否有一个公式,允许我只填写一列包含A和B列中相等数量的单元格?



示例:

  AB 
-----
1 MM
2 LM
3 LL
4 MM
5 ML
-----
3

由于列A和B在第1行和第4行中都包含M,在第3行中包含L,结果为3.(2 + 1 ^^)

-
电子表格菜鸟

解决方案

简单的解决方案是使用 QUERY 函数在google电子表格中:

  = SUM(QUERY(A1:B5,Select 1其中A = B))

或使用 SUMPRODUCT


$ b

  = ARRAYFORMULA(SUM(((A:A)=(B:B))*(1 )))


Given a spreadsheet with two columns, say A and B, each containing n values under it, all text; is there a formula that allows me to fill just one cell containing the amount of equal values in columns A and B?

Example:

    A   B
    -----
1   M   M
2   L   M
3   L   L
4   M   M
5   M   L
    -----
        3

Since columns A and B both contain an M in rows 1 and 4, and a L in row 3, the result is 3. (2+1 ^^)

Thanks in advance - Spreadsheet rookie

解决方案

A simple solution is to use QUERY function in google spreadsheet:

=SUM(QUERY(A1:B5, "Select 1 where A = B"))

Or using SUMPRODUCT:

=ARRAYFORMULA(SUM(((A:A)=(B:B)) * (1) ))

这篇关于电子表格公式用于求和列值的总和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 07:54