Sum Up rows with the same name and value

删除回忆录丶 提交于 2020-01-06 08:10:11

问题


I have a table which looks like that:

I want to sum up all the values which have the same name string and the same date, so that I get such a table:

I have to say that I do not know how such a thing could be implemented. I tried something like an if...else structure, but what I am missing is the checking part of the other rows. Any suggestion how to implement such a problem?

I appreciate your answer!


回答1:


Try SUMIFS in E2 and drag it down:

=SUMIFS($C$2:$C$10,$A$2:$A$10,A2,$B$2:$B$10,B2)


来源:https://stackoverflow.com/questions/21730380/sum-up-rows-with-the-same-name-and-value

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