所以我有以下数据
Description Quantity Price
Light 2 5
LED Light 5 3
Books 10 2
现在我想知道所有灯的总价。我试过以下但是没有用。
=arrayformula(sumproduct(a2:a5="*Light",b2:b5*c2:c5))
通配符 *在countif
等函数中工作,但似乎不适用于arrayformula
。 Filter
正确过滤,但我想知道哪条线与数量和价格相匹配,因此我也无法使用filter
,因为它只会输出匹配的行。那么,我的功能出了什么问题?
答案 0 :(得分:0)
请尝试:
=sumproduct(B2:B10,C2:C10,--not(iserror(find("Light",A2:A10))))