excel 替换值 N/A [英] excel replacement values for N/A

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

问题描述

我有一行包含从 A1A3 的一些值.我有

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)

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

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