我将尽可能简洁明了。我正在制作一个电子表格,其中我的项目价格列在A1:A40的范围内。 B1:B40列出了与购买类别类型(杂货,天然气等)相对应的数字(1,2,3等)。现在我想要一个单元格,比如C1,添加A范围内与B中特定数字相等的所有实例。
例如:
A1 = $5.00 | B1 = 1 | C1 = The sum in range A1:A3 if it's corresponding B value is equal to 1 (In this case B1 and B3, so C1=A1+A3)
A2 = $2.50 | B2 = 2 | C2 = The sum in range A1:A3 if it's corresponding B value is equal to 2 (In this case B2, so C2= B2)
A3 = $4.00 | B3 = 1 | C3 =
答案 0 :(得分:-2)
使用SUMIF函数
SUMIF(范围,标准,[sum_range])
在单元格C1中输入公式= SUMIF(B:B,1,A:A)