WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Average of numbers under 10

 
   Home -> Office -> New Users RSS
Next:  this file type is blocked from opening in this ve..  
Author Message
"Linda

External


Since: Jun 28, 2007
Posts: 4



(Msg. 1) Posted: Sat Oct 10, 2009 7:48 pm
Post subject: Average of numbers under 10
Archived from groups: microsoft>public>excel>newusers (more info?)

Hi,

I am using Excel 2003. On my sheet named "Original" in column K I have a
list of numbers they range from .1 to 50 but could go higher. On another
sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give me
the average of these numbers. I would like to make another cell with the
same function but I want to it to only average items in column K that are
less than 10 and ignore any that are 10 or more.

Thanks,
Linda
Back to top
Login to vote
Dave Peterson

External


Since: Jul 08, 2005
Posts: 9297



(Msg. 2) Posted: Sat Oct 10, 2009 7:48 pm
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You can use =sumif()/countif()

=sumif(original!k2:k10,"<"&10) / countif(original!k2:k10,"<"&10)



"Linda (RQ)" wrote:
>
> Hi,
>
> I am using Excel 2003. On my sheet named "Original" in column K I have a
> list of numbers they range from .1 to 50 but could go higher. On another
> sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give me
> the average of these numbers. I would like to make another cell with the
> same function but I want to it to only average items in column K that are
> less than 10 and ignore any that are 10 or more.
>
> Thanks,
> Linda

--

Dave Peterson
Back to top
Login to vote
Ron Rosenfeld

External


Since: Aug 26, 2003
Posts: 2231



(Msg. 3) Posted: Sat Oct 10, 2009 7:59 pm
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sat, 10 Oct 2009 19:48:17 -0400, "Linda \(RQ\)" <Linda.DeleteThis@TenForward.Laptop>
wrote:

>Hi,
>
>I am using Excel 2003. On my sheet named "Original" in column K I have a
>list of numbers they range from .1 to 50 but could go higher. On another
>sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give me
>the average of these numbers. I would like to make another cell with the
>same function but I want to it to only average items in column K that are
>less than 10 and ignore any that are 10 or more.
>
>Thanks,
>Linda
>
>

Here's one way:

=SUMIF(Original!$K$2:$K$10,"<10")/COUNTIF(Original!$K$2:$K$10,"<10")

--ron
Back to top
Login to vote
"Linda

External


Since: Jun 28, 2007
Posts: 4



(Msg. 4) Posted: Sat Oct 10, 2009 8:10 pm
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks Guys!!


"Linda (RQ)" <Linda RemoveThis @TenForward.Laptop> wrote in message
news:eOFlnQgSKHA.764@TK2MSFTNGP02.phx.gbl...
> Hi,
>
> I am using Excel 2003. On my sheet named "Original" in column K I have a
> list of numbers they range from .1 to 50 but could go higher. On another
> sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give
> me the average of these numbers. I would like to make another cell with
> the same function but I want to it to only average items in column K that
> are less than 10 and ignore any that are 10 or more.
>
> Thanks,
> Linda
>
>
>
Back to top
Login to vote
Linda RQ

External


Since: Sep 25, 2006
Posts: 18



(Msg. 5) Posted: Sat Oct 10, 2009 9:09 pm
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Ron,

What do the $ do/mean? Your results were the same as Daves.

Thanks,
Linda


"Ron Rosenfeld" <ronrosenfeld DeleteThis @nospam.org> wrote in message
news:du72d5963u8upit687icb5kpie46p3an45@4ax.com...
> On Sat, 10 Oct 2009 19:48:17 -0400, "Linda \(RQ\)"
> <Linda DeleteThis @TenForward.Laptop>
> wrote:
>
>>Hi,
>>
>>I am using Excel 2003. On my sheet named "Original" in column K I have a
>>list of numbers they range from .1 to 50 but could go higher. On another
>>sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give
>>me
>>the average of these numbers. I would like to make another cell with the
>>same function but I want to it to only average items in column K that are
>>less than 10 and ignore any that are 10 or more.
>>
>>Thanks,
>>Linda
>>
>>
>
> Here's one way:
>
> =SUMIF(Original!$K$2:$K$10,"<10")/COUNTIF(Original!$K$2:$K$10,"<10")
>
> --ron
Back to top
Login to vote
T. Valko

External


Since: Nov 24, 2006
Posts: 6828



(Msg. 6) Posted: Sat Oct 10, 2009 10:21 pm
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Another one...

Array entered** :

=IF(COUNTIF(K2:K10,"<10"),AVERAGE(IF(K2:K10<>"",IF(K2:K10<10,K2:K10))),"")

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Linda (RQ)" <Linda DeleteThis @TenForward.Laptop> wrote in message
news:eOFlnQgSKHA.764@TK2MSFTNGP02.phx.gbl...
> Hi,
>
> I am using Excel 2003. On my sheet named "Original" in column K I have a
> list of numbers they range from .1 to 50 but could go higher. On another
> sheet I have this function =AVERAGE(Original!K2:K10) in a cell which give
> me the average of these numbers. I would like to make another cell with
> the same function but I want to it to only average items in column K that
> are less than 10 and ignore any that are 10 or more.
>
> Thanks,
> Linda
>
>
>
Back to top
Login to vote
Ron Rosenfeld

External


Since: Aug 26, 2003
Posts: 2231



(Msg. 7) Posted: Sun Oct 11, 2009 7:03 am
Post subject: Re: Average of numbers under 10 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sat, 10 Oct 2009 21:09:40 -0400, "Linda RQ" <RomulanQueen.TakeThisOut@10Forward.SSTNG>
wrote:

>Ron,
>
>What do the $ do/mean? Your results were the same as Daves.
>
>Thanks,
>Linda

Check HELP for "Addressing" or Absolute Address.
Excel has several modes of addressing cells: Absolute, Relative, and mixed.

If you drag Dave's formula to another cell, the cell references will change.

If you drag a formula with absolute addresses to another cell, cell references
preceded by the "$" will not change.

This can be useful if you want a reference to a data table to remain constant,
while the reference to a lookup value changes.

In this particular case, since the "<10" is not a cell reference, it won't make
any difference.

But if the "<10" was replaced by a cell reference; e.g. "<"&M7 and you had a
series of values in M7:M9 that you wished to evaluate against, you could enter
a formula in N7 and fill down to N9; the table reference would remain the same,
and the "lookup reference" would adjust.
--ron
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> New Users All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support