#1   Report Post  
Posted to microsoft.public.excel.misc
Rak Rak is offline
external usenet poster
 
Posts: 6
Default SUMIFS

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default SUMIFS

That formula works for me, is your column AN formated as text

Regards
Steve
"RAK" wrote in message
...
My SUMIFS formula was "accepted" but the result is 0.0 even though there
are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is
EOC



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,045
Default SUMIFS

On Fri, 4 Jun 2010 07:38:33 -0700, RAK
wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC


It is quite possible that the values in AN3:AN997 are text and not
numbers.

How are those values generated?

You can use the ISNUMBER (or ISTEXT) commands to see how Excel is
interpreting these values.

If they are being generated by a formula, you'll need to ensure the
formula is outputing numbers and not text.

If they were input manually, or copied from some other source, you
will need to convert them to numbers. This can be done easily,
depending on how the values have been entered.
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default SUMIFS

Maybe the value in AN3:An997 aren't really numbers. Maybe they're just text
that looks like numbers.

If you put:
=count(an3:an997)
in a cell
and
=counta(an3:an997)
do those evaluate to the same result?

And a silly suggestion...

Are you sure you're using the correct columns?

RAK wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 506
Default SUMIFS

1) Check whether the AN3:AN997 numbers are formatted as Text.
2) Check whether AN3:AN997 numbers are entered with a leading single quote.
3) Check whether C3:C997 range is having the Value €œARC€ with any leading or
preceding spaces.
4) Check whether D3:D997 range is having the Value €œEOC€ with any leading or
preceding spaces.

If all the above is perfect then the formula will run perfectly.

Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"RAK" wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC



  #6   Report Post  
Posted to microsoft.public.excel.misc
Rak Rak is offline
external usenet poster
 
Posts: 6
Default SUMIFS



"RAK" wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC
AN is formatted as numbers (format cellNumberNumberpositive 1234.0 w/o ( )

  #7   Report Post  
Posted to microsoft.public.excel.misc
Rak Rak is offline
external usenet poster
 
Posts: 6
Default SUMIFS



"Ron Rosenfeld" wrote:

On Fri, 4 Jun 2010 07:38:33 -0700, RAK
wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC


It is quite possible that the values in AN3:AN997 are text and not
numbers.

How are those values generated?

You can use the ISNUMBER (or ISTEXT) commands to see how Excel is
interpreting these values.

If they are being generated by a formula, you'll need to ensure the
formula is outputing numbers and not text.

If they were input manually, or copied from some other source, you
will need to convert them to numbers. This can be done easily,
depending on how the values have been entered.
.
ISNUMBER shows true that it is a number - it is generated by a formula

  #8   Report Post  
Posted to microsoft.public.excel.misc
Rak Rak is offline
external usenet poster
 
Posts: 6
Default SUMIFS



"Dave Peterson" wrote:

Maybe the value in AN3:An997 aren't really numbers. Maybe they're just text
that looks like numbers.

If you put:
=count(an3:an997)
in a cell
and
=counta(an3:an997)
do those evaluate to the same result?

And a silly suggestion...

Are you sure you're using the correct columns?

RAK wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC


--

Dave Peterson
.
They appear to be numbers by cell format screen and return of true value fromISNUMBER

  #9   Report Post  
Posted to microsoft.public.excel.misc
Rak Rak is offline
external usenet poster
 
Posts: 6
Default SUMIFS



"Ms-Exl-Learner" wrote:

1) Check whether the AN3:AN997 numbers are formatted as Text.
2) Check whether AN3:AN997 numbers are entered with a leading single quote.
3) Check whether C3:C997 range is having the Value €œARC€ with any leading or
preceding spaces.
4) Check whether D3:D997 range is having the Value €œEOC€ with any leading or
preceding spaces.

If all the above is perfect then the formula will run perfectly.

Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"RAK" wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC
your conditions 1,3 & 4 are okay. Can you expand on condition 2 - single quote

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default SUMIFS

Then check the values in the other fields. Maybe they're not what you're
looking for.

RAK wrote:

"Dave Peterson" wrote:

Maybe the value in AN3:An997 aren't really numbers. Maybe they're just text
that looks like numbers.

If you put:
=count(an3:an997)
in a cell
and
=counta(an3:an997)
do those evaluate to the same result?

And a silly suggestion...

Are you sure you're using the correct columns?

RAK wrote:

My SUMIFS formula was "accepted" but the result is 0.0 even though there are
numbers to add. What can the problem be?
The formula is =SUMIFS(AN3:AN997,C3:C997,"ARC",D3:D997,"EOC")
I want the total form column AN when column C is ARC and when column D is EOC


--

Dave Peterson
.
They appear to be numbers by cell format screen and return of true value fromISNUMBER


--

Dave Peterson


  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,045
Default SUMIFS

On Fri, 4 Jun 2010 10:03:09 -0700, RAK
wrote:

ISNUMBER shows true that it is a number - it is generated by a formula


Please post the formula.

Also, if it is truly a number, then your problem is that your value in
the SUMIFS criteria, and the value in the SUMIFS criteria range, are
not exactly the same. There may be extra spaces, or nbsp's or other
contents difficult to see.
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
How do I use sumifs - wantfit Excel Worksheet Functions 1 April 22nd 10 09:37 PM
SUMIFS help Peter Excel Worksheet Functions 3 March 4th 10 11:27 PM
SUMIFS MurrayBarn Excel Worksheet Functions 4 June 15th 09 08:02 AM
SUMIFS Mark Excel Discussion (Misc queries) 3 November 28th 07 12:09 PM
SUMIFS and OR M.S. Westerbeek Excel Worksheet Functions 6 August 23rd 07 07:24 PM


All times are GMT +1. The time now is 01:32 AM.

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"