excel replacement values for N/A

前端 未结 2 741
隐瞒了意图╮
隐瞒了意图╮ 2021-01-22 01:05

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

1
3
#N/A 

I tried

=SUM(A1:A3)
2条回答
  •  [愿得一人]
    2021-01-22 01:38

    If you are not aware of Aggregate function, you will need to use Array Formulas which can handle this kind of data easily.

    =SUM(IFERROR(A1:A3,0))
    =SUM(IF(ISNUMBER(A1:A3),A1:A3))
    

    Both the formulas above will require a special key stroke Ctrl+Shift+Enter

提交回复
热议问题