不适用于N / A的替换值 [英] excel replacement values for N/A

查看:159
本文介绍了不适用于N / A的替换值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一行从 A1 A3 中的某些值。我有

I have a row having some values from A1 to A3. I have

1
3
#N/A 

我尝试过

=SUM(A1:A3)

但由于我的值为#N / A,我无法获得3个值的总和。我想把#N / A当作0,得到总和

But since I have value as #N/A am not able get the sum of 3 values. I want to treat #N/A as 0 and get the sum

推荐答案

AGGREGATE 函数非常适用于忽略错误项

The AGGREGATE function is great for ignoring error terms

=AGGREGATE(9,6,A1:A3)






检查我提供的更多信息,但具体到上述公式的链接:


Check the link I provided for more info but specific to the formula above:


  • 9 表示 SUM 公式

  • 6 表示忽略错误项(视为等于零)

  • 9 represents the SUM formula
  • 6 means ignore error terms (treat as equal to zero)

这篇关于不适用于N / A的替换值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆