Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I sum the values in cells without adding those #N/A in some cells?
Please help. tywl |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For summing Range A1:A10 use the below formula...Please note that this is an
array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks. But how can I get a result of a simple formula of adding different
cells (instead of a range) that have some #N/A? For example: = a1+a3+b4+c5+f6, but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
another way:
=SUM(IF(ISNUMBER(A1:A10),A1:A10,"")) Ctrl+Shift+Enter On 22 Maj, 09:46, Jacob Skaria wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl- Ukryj cytowany tekst - - Pokaż cytowany tekst - |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try handling the error for these cells using
=IF(iserror(.. If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Thanks. But how can I get a result of a simple formula of adding different cells (instead of a range) that have some #N/A? For example: = a1+a3+b4+c5+f6, but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Couldn't solve my problem! I don't want to handle the cells with #N/A value
but the adding formula that can function correctly without being affected by those #N/A cells! "Jacob Skaria" wrote: Try handling the error for these cells using =IF(iserror(.. If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Thanks. But how can I get a result of a simple formula of adding different cells (instead of a range) that have some #N/A? For example: = a1+a3+b4+c5+f6, but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA(A1),0,A1)+IF(ISNA(A3),0,A3)+IF(ISNA(B4),0 ,B4)+IF(ISNA(C5),0,C5)+IF(ISNA(F6),0,F6)
If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Couldn't solve my problem! I don't want to handle the cells with #N/A value but the adding formula that can function correctly without being affected by those #N/A cells! "Jacob Skaria" wrote: Try handling the error for these cells using =IF(iserror(.. If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Thanks. But how can I get a result of a simple formula of adding different cells (instead of a range) that have some #N/A? For example: = a1+a3+b4+c5+f6, but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Couldn't solve my problem!"?
I DON'T think Jacob (and anyone) HAS to do it in the first place... On 22 Maj, 11:24, tywlam wrote: Couldn't solve my problem! I don't want to handle the cells with #N/A value but the adding formula that can function correctly without being affected by those #N/A cells! "Jacob Skaria" wrote: Try handling the error for these cells using =IF(iserror(.. If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Thanks. Â*But how can I get a result of a simple formula of adding different cells (instead of a range) that have some #N/A? For example: Â*= a1+a3+b4+c5+f6, Â* but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl- Ukryj cytowany tekst - - Pokaż cytowany tekst - |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It works although I have to change the formula a lot!
Thanks a lot. "Jacob Skaria" wrote: =IF(ISNA(A1),0,A1)+IF(ISNA(A3),0,A3)+IF(ISNA(B4),0 ,B4)+IF(ISNA(C5),0,C5)+IF(ISNA(F6),0,F6) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Couldn't solve my problem! I don't want to handle the cells with #N/A value but the adding formula that can function correctly without being affected by those #N/A cells! "Jacob Skaria" wrote: Try handling the error for these cells using =IF(iserror(.. If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: Thanks. But how can I get a result of a simple formula of adding different cells (instead of a range) that have some #N/A? For example: = a1+a3+b4+c5+f6, but b4 and f6 have #N/A ! Regards, "Jacob Skaria" wrote: For summing Range A1:A10 use the below formula...Please note that this is an array formula. Within the cell in edit mode (F2) paste this formula and press Ctrl+Shift+Enter to apply this formula. If successful in 'Formula Bar' you can notice the curly braces at both ends like "{=<formula}" =SUM(IF(ISNA(A1:A10),"",A1:A10)) If this post helps click Yes --------------- Jacob Skaria "tywlam" wrote: How do I sum the values in cells without adding those #N/A in some cells? Please help. tywl |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Fwiw, this also seems to work over a rectangular range, ignoring #N/As:
=SUMIF(A1:F6,"<#N/A") -- Max Singapore http://savefile.com/projects/236895 Downloads:25,000 Files:300 Subscribers:70 xdemechanik --- "tywlam" wrote: It works although I have to change the formula a lot! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CANT INSERT CELLS, ONLY ROWS & COLUMNS | Excel Worksheet Functions | |||
Countif cells two rows in corresponding columns | Excel Discussion (Misc queries) | |||
Can't Copy/Cut Cells, Rows or Columns | Excel Discussion (Misc queries) | |||
copy cells from columns to rows | Excel Discussion (Misc queries) | |||
How do you select two cells in different rows and columns with ou. | Excel Discussion (Misc queries) |