SUMIFS with multiple criteria variable

牧云@^-^@ 提交于 2019-12-20 05:27:29

问题


I just discovered here that I can use SUMIFS with multiple criterias, which is really cool.

But there is any way to set a variable to the criterias?

Example: instead of writting

=SUM(SUMIFS(sum_range,criteria_range,{"red","blue"}))

I would like to put the text "red" on the cell A1 and write:

=SUM(SUMIFS(sum_range,criteria_range,{A1,"blue"}))

Thank you


回答1:


If your range of values is A1:A2, try using that as the third (Criteria1) argument, and pressing CTRL+SHIFT+ENTER instead of just ENTER.

=SUM(SUMIFS(sum_range,criteria_range,A1:A2))

This will produce an array formula and you should see brackets surround the formula afterwards.

{=SUM(SUMIFS(sum_range,criteria_range,A1:A2))}


来源:https://stackoverflow.com/questions/41348112/sumifs-with-multiple-criteria-variable

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!