PC Review


Reply
Thread Tools Rate Thread

Combination sumif() and isnumber()

 
 
George
Guest
Posts: n/a
 
      22nd Feb 2008
Hi to everyone.
Is it possible to combine somehow the functions SUMIF() and ISNUMBER() ?.
(For example, how can I say in Excel, at the end of a big column, filled of
miscellaneous data “Sum all the values that are numbers” ? )

 
Reply With Quote
 
 
 
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      22nd Feb 2008
Doesn't the SUM function work directly for you? For example,

=SUM(A1:A1000)

Rick


"George" <(E-Mail Removed)> wrote in message
news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
> Hi to everyone.
> Is it possible to combine somehow the functions SUMIF() and ISNUMBER() ?.
> (For example, how can I say in Excel, at the end of a big column, filled
> of
> miscellaneous data “Sum all the values that are numbers” ? )
>


 
Reply With Quote
 
George
Guest
Posts: n/a
 
      22nd Feb 2008
All the data arent numbers.

"Rick Rothstein (MVP - VB)" wrote:

> Doesn't the SUM function work directly for you? For example,
>
> =SUM(A1:A1000)
>
> Rick
>
>
> "George" <(E-Mail Removed)> wrote in message
> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
> > Hi to everyone.
> > Is it possible to combine somehow the functions SUMIF() and ISNUMBER() ?.
> > (For example, how can I say in Excel, at the end of a big column, filled
> > of
> > miscellaneous data “Sum all the values that are numbers” ? )
> >

>
>

 
Reply With Quote
 
George
Guest
Posts: n/a
 
      22nd Feb 2008
Some cells include error msg (i use vlookup()) and the simple SUM dont work

"Rick Rothstein (MVP - VB)" wrote:

> Doesn't the SUM function work directly for you? For example,
>
> =SUM(A1:A1000)
>
> Rick
>
>
> "George" <(E-Mail Removed)> wrote in message
> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
> > Hi to everyone.
> > Is it possible to combine somehow the functions SUMIF() and ISNUMBER() ?.
> > (For example, how can I say in Excel, at the end of a big column, filled
> > of
> > miscellaneous data “Sum all the values that are numbers” ? )
> >

>
>

 
Reply With Quote
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      22nd Feb 2008
When I try SUM on a column of numbers and non-numbers, I get the total of
the numbers... doesn't SUM work the same for you?

Rick


"George" <(E-Mail Removed)> wrote in message
news:BD3F7265-114C-4FA6-82DE-(E-Mail Removed)...
> All the data arent numbers.
>
> "Rick Rothstein (MVP - VB)" wrote:
>
>> Doesn't the SUM function work directly for you? For example,
>>
>> =SUM(A1:A1000)
>>
>> Rick
>>
>>
>> "George" <(E-Mail Removed)> wrote in message
>> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
>> > Hi to everyone.
>> > Is it possible to combine somehow the functions SUMIF() and ISNUMBER()
>> > ?.
>> > (For example, how can I say in Excel, at the end of a big column,
>> > filled
>> > of
>> > miscellaneous data “Sum all the values that are numbers” ? )
>> >

>>
>>


 
Reply With Quote
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      22nd Feb 2008
Ah, information you neglected to mention in your first two messages.<g>

Try this array-entered** formula...

=SUM(IF(ISERROR(A1:A8),0,A1:A8))

** Commit the formula by pressing Ctrl+Shift+Enter instead of just Enter

Rick


"George" <(E-Mail Removed)> wrote in message
news:F202228A-CE34-467F-A6D1-(E-Mail Removed)...
> Some cells include error msg (i use vlookup()) and the simple SUM dont
> work
>
> "Rick Rothstein (MVP - VB)" wrote:
>
>> Doesn't the SUM function work directly for you? For example,
>>
>> =SUM(A1:A1000)
>>
>> Rick
>>
>>
>> "George" <(E-Mail Removed)> wrote in message
>> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
>> > Hi to everyone.
>> > Is it possible to combine somehow the functions SUMIF() and ISNUMBER()
>> > ?.
>> > (For example, how can I say in Excel, at the end of a big column,
>> > filled
>> > of
>> > miscellaneous data “Sum all the values that are numbers” ? )
>> >

>>
>>


 
Reply With Quote
 
George
Guest
Posts: n/a
 
      22nd Feb 2008
Thanks. I try it.
(But just to know, in general, is it possible to combine the two functions ?)

"Rick Rothstein (MVP - VB)" wrote:

> Ah, information you neglected to mention in your first two messages.<g>
>
> Try this array-entered** formula...
>
> =SUM(IF(ISERROR(A1:A8),0,A1:A8))
>
> ** Commit the formula by pressing Ctrl+Shift+Enter instead of just Enter
>
> Rick
>
>
> "George" <(E-Mail Removed)> wrote in message
> news:F202228A-CE34-467F-A6D1-(E-Mail Removed)...
> > Some cells include error msg (i use vlookup()) and the simple SUM dont
> > work
> >
> > "Rick Rothstein (MVP - VB)" wrote:
> >
> >> Doesn't the SUM function work directly for you? For example,
> >>
> >> =SUM(A1:A1000)
> >>
> >> Rick
> >>
> >>
> >> "George" <(E-Mail Removed)> wrote in message
> >> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
> >> > Hi to everyone.
> >> > Is it possible to combine somehow the functions SUMIF() and ISNUMBER()
> >> > ?.
> >> > (For example, how can I say in Excel, at the end of a big column,
> >> > filled
> >> > of
> >> > miscellaneous data “Sum all the values that are numbers” ? )
> >> >
> >>
> >>

>
>

 
Reply With Quote
 
scott
Guest
Posts: n/a
 
      22nd Feb 2008
Normally the math works if there is text in the column.
Errors in the column seem to cause math calculation problems though.
Do you have errors in the column you arre calculating?
Scott

On Fri, 22 Feb 2008 10:20:03 -0800, George
<(E-Mail Removed)> wrote:

>Hi to everyone.
>Is it possible to combine somehow the functions SUMIF() and ISNUMBER() ?.
>(For example, how can I say in Excel, at the end of a big column, filled of
>miscellaneous data Sum all the values that are numbers ? )

 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      22nd Feb 2008
Try this:

=SUMIF(A:A,"<"&1E100)

Or:

=SUMIF(A:A,"<1E100")


--
Biff
Microsoft Excel MVP


"George" <(E-Mail Removed)> wrote in message
news:76C80499-890C-4EAA-9754-(E-Mail Removed)...
> Thanks. I try it.
> (But just to know, in general, is it possible to combine the two functions
> ?)
>
> "Rick Rothstein (MVP - VB)" wrote:
>
>> Ah, information you neglected to mention in your first two messages.<g>
>>
>> Try this array-entered** formula...
>>
>> =SUM(IF(ISERROR(A1:A8),0,A1:A8))
>>
>> ** Commit the formula by pressing Ctrl+Shift+Enter instead of just Enter
>>
>> Rick
>>
>>
>> "George" <(E-Mail Removed)> wrote in message
>> news:F202228A-CE34-467F-A6D1-(E-Mail Removed)...
>> > Some cells include error msg (i use vlookup()) and the simple SUM dont
>> > work
>> >
>> > "Rick Rothstein (MVP - VB)" wrote:
>> >
>> >> Doesn't the SUM function work directly for you? For example,
>> >>
>> >> =SUM(A1:A1000)
>> >>
>> >> Rick
>> >>
>> >>
>> >> "George" <(E-Mail Removed)> wrote in message
>> >> news:6988C6EA-837F-4059-9769-(E-Mail Removed)...
>> >> > Hi to everyone.
>> >> > Is it possible to combine somehow the functions SUMIF() and
>> >> > ISNUMBER()
>> >> > ?.
>> >> > (For example, how can I say in Excel, at the end of a big column,
>> >> > filled
>> >> > of
>> >> > miscellaneous data "Sum all the values that are numbers" ? )
>> >> >
>> >>
>> >>

>>
>>



 
Reply With Quote
 
Harlan Grove
Guest
Posts: n/a
 
      23rd Feb 2008
George <Geo...@discussions.microsoft.com> wrote...
....
>(But just to know, in general, is it possible to combine the two
>functions ?)


No, not possible.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
SUMIF/AND combination? Michael Microsoft Excel Misc 2 19th Mar 2010 11:54 AM
using SUMIF with ISNUMBER Bob Arnett Microsoft Excel Worksheet Functions 6 23rd Mar 2009 09:56 PM
SUMPRODUCT, SUMIF, ISNUMBER?? please help Tasha Microsoft Excel Misc 2 23rd Sep 2008 04:38 PM
SUMIF - HLOOKUP Combination =?Utf-8?B?TWFyaw==?= Microsoft Excel Worksheet Functions 1 4th Feb 2005 08:03 PM
sumif in combination with vlookup chrismania Microsoft Excel Worksheet Functions 0 6th Nov 2003 03:36 PM


Features
 

Advertising
 

Newsgroups
 


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