Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Sum Function w/ #DIV/0!

Is there a way that I can add a column that includes #DIV/0!

Biff
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Sum Function w/ #DIV/0!

1. Insert a column
2. Select a cell in the new column
3. enter:
=0/0
--
Gary''s Student - gsnu200822


"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Sum Function w/ #DIV/0!

Try

SUM(IF(NOT(ISERROR(A1:A10)),A1:A10))

'This is an array formula which must be entered with CTRL+Shift+Enter and NOT
'just enter. If you do it correctly then Excel will put curly brackets around
'the formula{}. You can't type these yourself. If you Edit the ranges
'then you must re-enter as An array

Mike

"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Sum Function w/ #DIV/0!

=SUMIF(A1:A500,"<="&99^99)

--


Regards,


Peo Sjoblom

"Biff" wrote in message
...
Is there a way that I can add a column that includes #DIV/0!

Biff



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Sum Function w/ #DIV/0!

I'm not sure I understand and maybe I didn't use the correct words. I have
column I need to summarize using the sum function, but it has cells with
formulas that have derived the #DIV/0! error message. Is there a way that I
can still sum the column because write now I am getting the same #DIV/0! in
my results for the sum function.

"Gary''s Student" wrote:

1. Insert a column
2. Select a cell in the new column
3. enter:
=0/0
--
Gary''s Student - gsnu200822


"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Sum Function w/ #DIV/0!

For column A try

=SUMIF(A:A,"<#DIV/0!")
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Sum Function w/ #DIV/0!

=SUMIF(A:A,"<10E37")

10E37 is a huge number in scientific notation.

Biff wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff


--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default Sum Function w/ #DIV/0!

On Dec 30, 11:45*am, Gary''s Student
wrote:
1. Insert a column
2. Select a cell in the new column
3. enter:
* * =0/0


LOL! I think he already figured that part out.

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Sum Function w/ #DIV/0!

You are correct!

It appears that by "add a column" Biff meant "sum a column" rather than
"insert a column"
--
Gary''s Student - gsnu200822


"Spiky" wrote:

On Dec 30, 11:45 am, Gary''s Student
wrote:
1. Insert a column
2. Select a cell in the new column
3. enter:
=0/0


LOL! I think he already figured that part out.


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Sum Function w/ #DIV/0!

O.K. then:

Say we want to sum E1 thru E20 and remove ALL errors:

=SUM(IF(ISNUMBER(E1:E20),E1:E20,""))

This is an array formula that must be entered with CNTRL-SHFT-ENTER rather
than just the ENTER key.
--
Gary''s Student - gsnu200822


"Biff" wrote:

I'm not sure I understand and maybe I didn't use the correct words. I have
column I need to summarize using the sum function, but it has cells with
formulas that have derived the #DIV/0! error message. Is there a way that I
can still sum the column because write now I am getting the same #DIV/0! in
my results for the sum function.

"Gary''s Student" wrote:

1. Insert a column
2. Select a cell in the new column
3. enter:
=0/0
--
Gary''s Student - gsnu200822


"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Sum Function w/ #DIV/0!

Hi,

And since 9E9 9^9 and = 9,000,000,000 which is probably bigger than any
single thing you have to sum

=SUMIF(A:A,"<9E9")

Which is really just a shorter version of a previous example. You could
also range name the range A and enter <1E304" in a cell and name it E and
then your formula

=SUMIF(A,E)

Which is not infomative by is short.
--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Sum Function w/ #DIV/0!

Just a minor correction (your forgot the base 10 for the exponent)...

9E9 = 9*10^9 = 9,000,000,000

--
Rick (MVP - Excel)


"Shane Devenshire" wrote in
message ...
Hi,

And since 9E9 9^9 and = 9,000,000,000 which is probably bigger than any
single thing you have to sum

=SUMIF(A:A,"<9E9")

Which is really just a shorter version of a previous example. You could
also range name the range A and enter <1E304" in a cell and name it E and
then your formula

=SUMIF(A,E)

Which is not infomative by is short.
--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Biff" wrote:

Is there a way that I can add a column that includes #DIV/0!

Biff


  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 57
Default Sum Function w/ #DIV/0!

If all numbers in the range are positive it's sufficient to use

=SUMIF(A:A,"0")

If there might be negative numbers

=SUM(SUMIF(A:A,{"0","<0"}))





  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Sum Function w/ #DIV/0!

Hi,

You can also use

=sumif(range,"<0")+sumif(range,"0")

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Biff" wrote in message
...
Is there a way that I can add a column that includes #DIV/0!

Biff


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
copy of excel file not showing formulal/function in the function b oaallam Excel Discussion (Misc queries) 4 September 6th 07 01:20 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
Emulate Index/Match combo function w/ VBA custom function Spencer Hutton Excel Worksheet Functions 2 May 2nd 05 05:26 PM
Nested IF Function, Date Comparing, and NetworkDays Function carl Excel Worksheet Functions 2 December 29th 04 09:57 PM


All times are GMT +1. The time now is 02:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"