我需要根据远离每个值的设定数量的列的条件从多个列中获取总值。
例如:
Column 1 Column2 Column3 Column4 Column5 Column6
Staff 1 staff2
status --- location --- cost status --- location --- cost
g london 500 y manchester 250
y birmingham 450 g scotland 100
我想总结状态为“g”的所有费用。 我一直试图求和,sumif,sumifs,sumproduct,offset和find,我只是不确定正确的函数组合来做到这一点。
任何帮助都将不胜感激。
由于
答案 0 :(得分:1)
使用SUMIF
公式更简单,其中和范围偏离条件范围中的2列 - 然后您可以对所有列使用一个SUMIF
函数,例如
=SUMIF(A:HZ,"g",C:IB)
答案 1 :(得分:0)
类似的东西:
= SUMPRODUCT((A:A =“g”)*(C:C))+ SUMPRODUCT((D:D =“g”)*(F:F))