Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For the special case of SUM, 0 can replace #N/A values. More generally the
array formula =SUM(IF(ISNA(A1:A50),"",A1:A50)) would still work if SUM were replaced with a different function. Jerry "JE McGimpsey" wrote: Good practice would generally recommend that you eliminate the #N/As, instead, to avoid having "expected" errors. If they're being generated from a lookup, you can use something like =IF(ISNA(VLOOKUP(...)),"Not Found",VLOOKUP(...)) in which case SUM will ignore the text. You can, though, use this array-entered (CTRL-SHIFT-ENTER or CMD-RETURN) formula: =SUM(IF(ISNA(A1:A50),0,A1:A50)) In article .com, wrote: Hi, Can anyone please let me know how can I add some values in a column which contains some #N/A. Thanks. MH |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Error bar values | Excel Worksheet Functions | |||
Error bar values | Excel Worksheet Functions | |||
Make Function ignore 0 and error values | Excel Worksheet Functions | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Error Handling #N/A with AVERAGE Function - Average of values in Row | Excel Worksheet Functions |