在 excel 中将文本字符串和数字相加
Summing Text strings and numbers togather in excel
我有一个table
A B C D E
1 Param1 Param2 Param3 CompulsoryParam4 CompulsoryParam5
2 1 NA NA 1 0
3 0 1 NA 1 1
4 0 0 NA 0 0
5 1 NA 1 1 1
预期输出
A B C D E F
1 Param1 Param2 Param3 CompulsoryParam4 CompulsoryParam5 Output
2 1 NA NA 1 0
3 0 1 NA 1 1 4
4 0 0 NA 0 0
5 1 NA 1 1 1 5 (sum of all A,B,C,D,E columns treating NA as 1, sum only if both D and E are 1)
所以基本上我希望 excel 将 NA 视为 1 。 NA Is text here (its not error, its plain text NA).
所以我只想在 D 和 E 列都为 1 的情况下求和,而不求和。代码已尝试。每列只有值 1,0 或 NA
= IF(PRODUCT(D2:E2=1),(5-COUNTIF(A2:D2,0)),"")
这似乎不起作用。你能告诉我我做错了什么吗
您的公式有错字 - IF(PRODUCT(D2:E2)=1,(5-COUNTIF(A2:D2,0)),"X")
我有一个table
A B C D E
1 Param1 Param2 Param3 CompulsoryParam4 CompulsoryParam5
2 1 NA NA 1 0
3 0 1 NA 1 1
4 0 0 NA 0 0
5 1 NA 1 1 1
预期输出
A B C D E F
1 Param1 Param2 Param3 CompulsoryParam4 CompulsoryParam5 Output
2 1 NA NA 1 0
3 0 1 NA 1 1 4
4 0 0 NA 0 0
5 1 NA 1 1 1 5 (sum of all A,B,C,D,E columns treating NA as 1, sum only if both D and E are 1)
所以基本上我希望 excel 将 NA 视为 1 。 NA Is text here (its not error, its plain text NA).
所以我只想在 D 和 E 列都为 1 的情况下求和,而不求和。代码已尝试。每列只有值 1,0 或 NA
= IF(PRODUCT(D2:E2=1),(5-COUNTIF(A2:D2,0)),"")
这似乎不起作用。你能告诉我我做错了什么吗
您的公式有错字 - IF(PRODUCT(D2:E2)=1,(5-COUNTIF(A2:D2,0)),"X")