本文介绍了电子表格功能可根据另一列的条件对一列中的所有值求和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要一个电子表格功能,当A列等于X
且等于Y
时,将产生B列中所有值的总和.
I want a spreadsheet function that will produce a sum of all values in column B for when column A is equal to X
and when it is equal to Y
.
A B
X 10
Y 3
X 7
X 22
Y 4
Y 9
输出应如下所示(其中39
和16
是公式的结果):
The output should look like the following (where 39
and 16
are the results of the formulas):
X 39 -> 10 + 7 + 22
Y 16 -> 3 + 4 + 9
推荐答案
类似这样的东西
X 10
Y 3
X 7
X 22
Y 4
Y 9
X "=SUMIF(A1:A6;A8;B1:B6)"
Y "=SUMIF(A1:A6;A9;B1:B6)"
这篇关于电子表格功能可根据另一列的条件对一列中的所有值求和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!