问题描述
我正在尝试计算 google 电子表格中的列总和DataSheet!G:G="solved" AND DataSheet!C:C="May" 它必须计算 DataSheet!H:H 的总和.
I'm trying to calculate the sum of column in google spreadsheet whenDataSheet!G:G="solved" AND DataSheet!C:C="May" it must calculate the sum of DataSheet!H:H.
我试过了
=ARRAYFORMULA(SUM(((DataSheet!C:C)="May") * ((DataSheet!G:G)="solved") * (DataSheet!H:H) ))
但它返回 N/A 谁能帮我解决这个问题.
But it returns N/A can anyone help me with this.
推荐答案
如果您的 H 列上的值是 N/A
,则此公式只会返回 N/A
.你检查过吗?而且,您确定是 N/A
而不是其他类型的错误吗?
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.
这篇关于Google 表格中 sumif 的多个条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!