PC Review


Reply
Thread Tools Rate Thread

averaging numbers

 
 
Jeff@nospam.invalid
Guest
Posts: n/a
 
      20th Jan 2011
Using Excel 2007
I need to average numbers. The numbers are in the same rows _but_ not in
consecutive columns. The problem I am trying to get around is that in
some rows, some cells are blank (do not contain a number) and I
therefore do not want them included in the calculations even though the
formula includes them.

How does "=AVERAGE" handle blank cells? Do I have to do anything special
to make XL ignore the blank cells when averaging the numbers?

Thank you.

Jeff
 
Reply With Quote
 
 
 
 
Pete_UK
Guest
Posts: n/a
 
      20th Jan 2011
AVERAGE ignores blank cells. Suppose you have 2 in A1, A2 is empty and
A3 contains 4, then:

= AVERAGE(A1:A3)

will return 3, not 2, showing that A2 has not figured in the
calculation.

Hope this helps.

Pete

On Jan 20, 2:18*pm, "J...@nospam.invalid" <J...@nospam.invalid> wrote:
> Using Excel 2007
> I need to average numbers. The numbers are in the same rows _but_ not in
> consecutive columns. The problem I am trying to get around is that in
> some rows, some cells are blank (do not contain a number) and I
> therefore do not want them included in the calculations even though the
> formula includes them.
>
> How does "=AVERAGE" handle blank cells? Do I have to do anything special
> to make XL ignore the blank cells when averaging the numbers?
>
> Thank you.
>
> Jeff


 
Reply With Quote
 
Jeff@nospam.invalid
Guest
Posts: n/a
 
      20th Jan 2011
On 1/20/11 9:43 AM, Pete_UK wrote:
> AVERAGE ignores blank cells. Suppose you have 2 in A1, A2 is empty and
> A3 contains 4, then:
>
> = AVERAGE(A1:A3)
>
> will return 3, not 2, showing that A2 has not figured in the
> calculation.
>
> Hope this helps.
>
> Pete
>
> On Jan 20, 2:18 pm, "J...@nospam.invalid"<J...@nospam.invalid> wrote:
>> Using Excel 2007
>> I need to average numbers. The numbers are in the same rows _but_ not in
>> consecutive columns. The problem I am trying to get around is that in
>> some rows, some cells are blank (do not contain a number) and I
>> therefore do not want them included in the calculations even though the
>> formula includes them.
>>
>> How does "=AVERAGE" handle blank cells? Do I have to do anything special
>> to make XL ignore the blank cells when averaging the numbers?
>>
>> Thank you.
>>
>> Jeff

>

Thank you that is what I needed to know.

Now here I'm getting fancy. I do not even know if this is possible but
it would be nice if it were:

The formula
=AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)
yields the correct average I need.

OK. Is there a way to have that result column show, not just the
average, but the values of U4, Z4, etc followed by some separator and
then the average from that formula?

This would let me see at a glance if there were any obvious outliers.

Jeff
 
Reply With Quote
 
Pete_UK
Guest
Posts: n/a
 
      20th Jan 2011
You could use a formula like this:

=U4&","&Z4&","&AE4&","&AJ4&","&AO4&","&AT4&","&AY4&"…"&AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)

which will separate each value with a comma and the average is
separated by ...

If you have fractional values then you might want to do something like
this:

=TEXT(U4,"0.00")&","&TEXT(Z4,"0.00")&","& ...

and so on, so that each value is shown to 2 deciamal places.

Hope this helps.

Pete

On Jan 20, 2:49*pm, "J...@nospam.invalid" <J...@nospam.invalid> wrote:
> On 1/20/11 9:43 AM, Pete_UK wrote:
>
>
>
> > AVERAGE ignores blank cells. Suppose you have 2 in A1, A2 is empty and
> > A3 contains 4, then:

>
> > = AVERAGE(A1:A3)

>
> > will return 3, not 2, showing that A2 has not figured in the
> > calculation.

>
> > Hope this helps.

>
> > Pete

>
> > On Jan 20, 2:18 pm, "J...@nospam.invalid"<J...@nospam.invalid> *wrote:
> >> Using Excel 2007
> >> I need to average numbers. The numbers are in the same rows _but_ not in
> >> consecutive columns. The problem I am trying to get around is that in
> >> some rows, some cells are blank (do not contain a number) and I
> >> therefore do not want them included in the calculations even though the
> >> formula includes them.

>
> >> How does "=AVERAGE" handle blank cells? Do I have to do anything special
> >> to make XL ignore the blank cells when averaging the numbers?

>
> >> Thank you.

>
> >> Jeff

>
> Thank you that is what I needed to know.
>
> Now here I'm getting fancy. I do not even know if this is possible but
> it would be nice if it were:
>
> The formula
> =AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)
> yields the correct average I need.
>
> OK. Is there a way to have that result column show, not just the
> average, but the values of U4, Z4, etc followed by some separator and
> then the average from that formula?
>
> This would let me see at a glance if there were any obvious outliers.
>
> Jeff- Hide quoted text -
>
> - Show quoted text -


 
Reply With Quote
 
Jeff@nospam.invalid
Guest
Posts: n/a
 
      20th Jan 2011
You are terrific. Thank you very much

Jeff

On 1/20/11 10:50 AM, Pete_UK wrote:
> You could use a formula like this:
>
> =U4&","&Z4&","&AE4&","&AJ4&","&AO4&","&AT4&","&AY4&"…"&AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)
>
> which will separate each value with a comma and the average is
> separated by ...
>
> If you have fractional values then you might want to do something like
> this:
>
> =TEXT(U4,"0.00")&","&TEXT(Z4,"0.00")&","& ...
>
> and so on, so that each value is shown to 2 deciamal places.
>
> Hope this helps.
>
> Pete
>
> On Jan 20, 2:49 pm, "J...@nospam.invalid"<J...@nospam.invalid> wrote:
>> On 1/20/11 9:43 AM, Pete_UK wrote:
>>
>>
>>
>>> AVERAGE ignores blank cells. Suppose you have 2 in A1, A2 is empty and
>>> A3 contains 4, then:

>>
>>> = AVERAGE(A1:A3)

>>
>>> will return 3, not 2, showing that A2 has not figured in the
>>> calculation.

>>
>>> Hope this helps.

>>
>>> Pete

>>
>>> On Jan 20, 2:18 pm, "J...@nospam.invalid"<J...@nospam.invalid> wrote:
>>>> Using Excel 2007
>>>> I need to average numbers. The numbers are in the same rows _but_ not in
>>>> consecutive columns. The problem I am trying to get around is that in
>>>> some rows, some cells are blank (do not contain a number) and I
>>>> therefore do not want them included in the calculations even though the
>>>> formula includes them.

>>
>>>> How does "=AVERAGE" handle blank cells? Do I have to do anything special
>>>> to make XL ignore the blank cells when averaging the numbers?

>>
>>>> Thank you.

>>
>>>> Jeff

>>
>> Thank you that is what I needed to know.
>>
>> Now here I'm getting fancy. I do not even know if this is possible but
>> it would be nice if it were:
>>
>> The formula
>> =AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)
>> yields the correct average I need.
>>
>> OK. Is there a way to have that result column show, not just the
>> average, but the values of U4, Z4, etc followed by some separator and
>> then the average from that formula?
>>
>> This would let me see at a glance if there were any obvious outliers.
>>
>> Jeff- Hide quoted text -
>>
>> - Show quoted text -

>


 
Reply With Quote
 
Pete_UK
Guest
Posts: n/a
 
      20th Jan 2011
You're welcome, Jeff - thanks for feeding back.

Pete

On Jan 20, 5:41*pm, "J...@nospam.invalid" <J...@nospam.invalid> wrote:
> You are terrific. *Thank you very much
>
> Jeff
>
> On 1/20/11 10:50 AM, Pete_UK wrote:
>
>
>
> > You could use a formula like this:

>
> > =U4&","&Z4&","&AE4&","&AJ4&","&AO4&","&AT4&","&AY4&"…"&AVERAGE(U4,Z4,AE4,AJ*4,AO4,AT4,AY4)

>
> > which will separate each value with a comma and the average is
> > separated by ...

>
> > If you have fractional values then you might want to do something like
> > this:

>
> > =TEXT(U4,"0.00")&","&TEXT(Z4,"0.00")&","& *...

>
> > and so on, so that each value is shown to 2 deciamal places.

>
> > Hope this helps.

>
> > Pete

>
> > On Jan 20, 2:49 pm, "J...@nospam.invalid"<J...@nospam.invalid> *wrote:
> >> On 1/20/11 9:43 AM, Pete_UK wrote:

>
> >>> AVERAGE ignores blank cells. Suppose you have 2 in A1, A2 is empty and
> >>> A3 contains 4, then:

>
> >>> = AVERAGE(A1:A3)

>
> >>> will return 3, not 2, showing that A2 has not figured in the
> >>> calculation.

>
> >>> Hope this helps.

>
> >>> Pete

>
> >>> On Jan 20, 2:18 pm, "J...@nospam.invalid"<J...@nospam.invalid> * *wrote:
> >>>> Using Excel 2007
> >>>> I need to average numbers. The numbers are in the same rows _but_ not in
> >>>> consecutive columns. The problem I am trying to get around is that in
> >>>> some rows, some cells are blank (do not contain a number) and I
> >>>> therefore do not want them included in the calculations even though the
> >>>> formula includes them.

>
> >>>> How does "=AVERAGE" handle blank cells? Do I have to do anything special
> >>>> to make XL ignore the blank cells when averaging the numbers?

>
> >>>> Thank you.

>
> >>>> Jeff

>
> >> Thank you that is what I needed to know.

>
> >> Now here I'm getting fancy. I do not even know if this is possible but
> >> it would be nice if it were:

>
> >> The formula
> >> =AVERAGE(U4,Z4,AE4,AJ4,AO4,AT4,AY4)
> >> yields the correct average I need.

>
> >> OK. Is there a way to have that result column show, not just the
> >> average, but the values of U4, Z4, etc followed by some separator and
> >> then the average from that formula?

>
> >> This would let me see at a glance if there were any obvious outliers.

>
> >> Jeff- Hide quoted text -

>
> >> - Show quoted text -- Hide quoted text -

>
> - Show quoted text -


 
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
Averaging Letters and Numbers alistair.douglas@gmail.com Microsoft Excel Programming 1 25th Sep 2006 02:14 PM
RE: Averaging Only the X Highest Numbers in a Row =?Utf-8?B?Um9uIENvZGVycmU=?= Microsoft Excel Worksheet Functions 4 10th Jun 2006 02:15 PM
Averaging Numbers with totals =?Utf-8?B?SW5xdWlyaW5nIE1pbmRz?= Microsoft Access 8 7th Jan 2006 12:02 AM
Re: Averaging Numbers when 2 numbers in one cell =?Utf-8?B?T3VyYW5pYQ==?= Microsoft Excel Worksheet Functions 1 12th Jan 2005 06:40 PM
Averaging numbers Donduk Microsoft Excel Discussion 5 20th Dec 2004 12:18 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:24 AM.