Multiple criteria for sumif in Google Sheets

喜你入骨 提交于 2019-12-22 05:28:13

问题


I'm trying to calculate the sum of column in google spreadsheet when DataSheet!G:G="solved" AND DataSheet!C:C="May" it must calculate the sum of DataSheet!H:H.

I have tried

=ARRAYFORMULA(SUM(((DataSheet!C:C)="May") * ((DataSheet!G:G)="solved") * (DataSheet!H:H) ))

But it returns N/A can anyone help me with this.


回答1:


This formula would only returns N/A if a value on your H column is N/A. Have you checked that? And, are you sure it's N/A and not other kind of error?

If so, can you please share your spreadsheet, or a sample of it so I can take a look for myself, because I can't reproduce this.



来源:https://stackoverflow.com/questions/10635029/multiple-criteria-for-sumif-in-google-sheets

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