A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

average function in Excel 2002



 
 
Thread Tools Display Modes
  #1  
Old May 7th, 2005, 12:51 PM
Sherry
external usenet poster
 
Posts: n/a
Default average function in Excel 2002

Hello all!
I wish to obtain the average of a number of numeric cells but wish this
average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17 but I
will be continually adding more data and wish for this to be calculated in
the average also.

My overall objective here is to carry out evaluations on staff performance
and as each new review arrives from a client regarding a staff member, I will
be adding a new row to include this data.Therefore need to have the number of
all reviews received whether it be five or fifty to be calculated in the
overall average.

I have not been able to identify anything in the application help to cover
this use of the average function and help will be greatfully appreciated

Cheers Sherry
  #2  
Old May 7th, 2005, 01:03 PM
Domenic
external usenet poster
 
Posts: n/a
Default

Define a dynamic range...

Insert Name Define

Name: Data

Refers to:
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Click Ok

Then use the following formula...

=AVERAGE(Data)

Hope this helps!

In article ,
Sherry wrote:

Hello all!
I wish to obtain the average of a number of numeric cells but wish this
average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17 but I
will be continually adding more data and wish for this to be calculated in
the average also.

My overall objective here is to carry out evaluations on staff performance
and as each new review arrives from a client regarding a staff member, I will
be adding a new row to include this data.Therefore need to have the number of
all reviews received whether it be five or fifty to be calculated in the
overall average.

I have not been able to identify anything in the application help to cover
this use of the average function and help will be greatfully appreciated

Cheers Sherry

  #3  
Old May 7th, 2005, 01:50 PM
Sherry
external usenet poster
 
Posts: n/a
Default

I risk causing some upset here but...............Ummmmm
What does that all mean Domenic? Some dumb questions to follow!!

Which cell do I name Data???

Where do I place
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536)) ????


Where do I use the formula... =AVERAGE(Data)

Perhaps I should have included the fact that I am very new to this functions
and macro stuff. A point that I am sure after this post will become painfully
obvious. LOL

"Domenic" wrote:

Define a dynamic range...

Insert Name Define

Name: Data

Refers to:
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Click Ok

Then use the following formula...

=AVERAGE(Data)

Hope this helps!

In article ,
Sherry wrote:

Hello all!
I wish to obtain the average of a number of numeric cells but wish this
average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17 but I
will be continually adding more data and wish for this to be calculated in
the average also.

My overall objective here is to carry out evaluations on staff performance
and as each new review arrives from a client regarding a staff member, I will
be adding a new row to include this data.Therefore need to have the number of
all reviews received whether it be five or fifty to be calculated in the
overall average.

I have not been able to identify anything in the application help to cover
this use of the average function and help will be greatfully appreciated

Cheers Sherry


  #4  
Old May 7th, 2005, 02:16 PM
JE McGimpsey
external usenet poster
 
Posts: n/a
Default

Well, you posted to the .newusers group, so don't be shy about asking
follow-ups.

Dominic was suggesting that you define a dynamic range. That means you
don't name specific cells.

Instead, choose the Insert/Name/Define menu item. In the "Names in
workbook" textbox enter "Data" (without the quotes).

In the "Refers to:" textbox, enter the formula, then click "Add". You
can use Dominic's formula, or, if you don't have any blank rows, this
formula will also work:

=OFFSET(Sheet1!$D$13,0,0,COUNTA(Sheet1!$D$13:$D$65 536),1)


Adjust the references for your sheet (e.g., if you sheet is named
"Staff", use

=OFFSET(Staff!$D$13...

For an alternative explanation, see

http://cpearson.com/excel/named.htm#Dynamic


In article ,
Sherry wrote:

I risk causing some upset here but...............Ummmmm
What does that all mean Domenic? Some dumb questions to follow!!

Which cell do I name Data???

Where do I place
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536)) ????


Where do I use the formula... =AVERAGE(Data)

Perhaps I should have included the fact that I am very new to this functions
and macro stuff. A point that I am sure after this post will become painfully
obvious. LOL

  #5  
Old May 7th, 2005, 02:29 PM
Domenic
external usenet poster
 
Posts: n/a
Default

Hi Sherry!

No problem, let me gear down a bit...

First we need to define a dynamic range. In doing so, the range will
automatically adjust as new data is entered. But we'll need to name
this range and provide a reference for it.

Go to the top of your Excel menu and select Insert. Then select Name,
and then Define. A new window will open. Where it says 'Name:', enter
the name you wish to use for this range. In my example, I used Data,
but you can use whichever name you wish. Once you've entered the name,
enter the reference where it says 'Refers to:'. The reference would
be...

=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Once you've entered the reference, click OK. Now you can use the
following formula to give you your average...

=AVERAGE(Data)

So as you can see, the range we're using for the AVERAGE function is
Data, which we defined in the first step.

Hope this helps!

In article ,
Sherry wrote:

I risk causing some upset here but...............Ummmmm
What does that all mean Domenic? Some dumb questions to follow!!

Which cell do I name Data???

Where do I place
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536)) ????


Where do I use the formula... =AVERAGE(Data)

Perhaps I should have included the fact that I am very new to this functions
and macro stuff. A point that I am sure after this post will become painfully
obvious. LOL

"Domenic" wrote:

Define a dynamic range...

Insert Name Define

Name: Data

Refers to:
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Click Ok

Then use the following formula...

=AVERAGE(Data)

Hope this helps!

In article ,
Sherry wrote:

Hello all!
I wish to obtain the average of a number of numeric cells but wish this
average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17 but
I
will be continually adding more data and wish for this to be calculated
in
the average also.

My overall objective here is to carry out evaluations on staff
performance
and as each new review arrives from a client regarding a staff member, I
will
be adding a new row to include this data.Therefore need to have the
number of
all reviews received whether it be five or fifty to be calculated in the
overall average.

I have not been able to identify anything in the application help to
cover
this use of the average function and help will be greatfully appreciated

Cheers Sherry


  #6  
Old May 7th, 2005, 03:59 PM
George Gee
external usenet poster
 
Posts: n/a
Default

Sherry

An easy way that doesn't use any formula.
Right-click the Status Bar, and put a checkmark next to 'Average'.
Highlight the cells you wish to average, the average of these cells
will be displayed on the Status Bar!

George Gee



*Sherry* has posted this message:

Hello all!
I wish to obtain the average of a number of numeric cells but wish
this average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17
but I will be continually adding more data and wish for this to be
calculated in the average also.

My overall objective here is to carry out evaluations on staff
performance and as each new review arrives from a client regarding a
staff member, I will be adding a new row to include this
data.Therefore need to have the number of all reviews received
whether it be five or fifty to be calculated in the overall average.

I have not been able to identify anything in the application help to
cover this use of the average function and help will be greatfully
appreciated

Cheers Sherry



  #7  
Old May 7th, 2005, 04:52 PM
Sherry
external usenet poster
 
Posts: n/a
Default

Thank you.This has acheived my objective and more importantly helped me to
understand what I am doing. I am most grateful and suitably impressed with
the amount of interest and support that was forthcoming in such a timely
manner. I know I will have many more challenges to overcome during this
learning curve so I am sure I will post again soon. TY

Cheers Sherry

"Domenic" wrote:

Hi Sherry!

No problem, let me gear down a bit...

First we need to define a dynamic range. In doing so, the range will
automatically adjust as new data is entered. But we'll need to name
this range and provide a reference for it.

Go to the top of your Excel menu and select Insert. Then select Name,
and then Define. A new window will open. Where it says 'Name:', enter
the name you wish to use for this range. In my example, I used Data,
but you can use whichever name you wish. Once you've entered the name,
enter the reference where it says 'Refers to:'. The reference would
be...

=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Once you've entered the reference, click OK. Now you can use the
following formula to give you your average...

=AVERAGE(Data)

So as you can see, the range we're using for the AVERAGE function is
Data, which we defined in the first step.

Hope this helps!

In article ,
Sherry wrote:

I risk causing some upset here but...............Ummmmm
What does that all mean Domenic? Some dumb questions to follow!!

Which cell do I name Data???

Where do I place
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536)) ????


Where do I use the formula... =AVERAGE(Data)

Perhaps I should have included the fact that I am very new to this functions
and macro stuff. A point that I am sure after this post will become painfully
obvious. LOL

"Domenic" wrote:

Define a dynamic range...

Insert Name Define

Name: Data

Refers to:
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536))

Click Ok

Then use the following formula...

=AVERAGE(Data)

Hope this helps!

In article ,
Sherry wrote:

Hello all!
I wish to obtain the average of a number of numeric cells but wish this
average to be ongoing rather than restricted to a range of cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17 but
I
will be continually adding more data and wish for this to be calculated
in
the average also.

My overall objective here is to carry out evaluations on staff
performance
and as each new review arrives from a client regarding a staff member, I
will
be adding a new row to include this data.Therefore need to have the
number of
all reviews received whether it be five or fifty to be calculated in the
overall average.

I have not been able to identify anything in the application help to
cover
this use of the average function and help will be greatfully appreciated

Cheers Sherry


  #8  
Old May 7th, 2005, 04:58 PM
Sherry
external usenet poster
 
Posts: n/a
Default

Thank You also JE McGimpsey
The site that you referenced is excellent. I found the writting style to be
very well laid out and easy to understand. (It's in my favourites folder now)
Thank You JE

"JE McGimpsey" wrote:

Well, you posted to the .newusers group, so don't be shy about asking
follow-ups.

Dominic was suggesting that you define a dynamic range. That means you
don't name specific cells.

Instead, choose the Insert/Name/Define menu item. In the "Names in
workbook" textbox enter "Data" (without the quotes).

In the "Refers to:" textbox, enter the formula, then click "Add". You
can use Dominic's formula, or, if you don't have any blank rows, this
formula will also work:

=OFFSET(Sheet1!$D$13,0,0,COUNTA(Sheet1!$D$13:$D$65 536),1)


Adjust the references for your sheet (e.g., if you sheet is named
"Staff", use

=OFFSET(Staff!$D$13...

For an alternative explanation, see

http://cpearson.com/excel/named.htm#Dynamic


In article ,
Sherry wrote:

I risk causing some upset here but...............Ummmmm
What does that all mean Domenic? Some dumb questions to follow!!

Which cell do I name Data???

Where do I place
=Sheet1!$D$13:INDEX(Sheet1!$D$13:$D$65536,MATCH(9. 99999999999999E+307,She
et1!$D$13:$D$65536)) ????


Where do I use the formula... =AVERAGE(Data)

Perhaps I should have included the fact that I am very new to this functions
and macro stuff. A point that I am sure after this post will become painfully
obvious. LOL


  #9  
Old May 7th, 2005, 08:51 PM
Rodney
external usenet poster
 
Posts: n/a
Default

Thankyou George,
I wasn't aware that existed.
(I am not game to reveal how I was counting cells before this)
Best Regards,
Rodney




| Sherry
|
| An easy way that doesn't use any formula.
| Right-click the Status Bar, and put a checkmark next to 'Average'.
| Highlight the cells you wish to average, the average of these cells
| will be displayed on the Status Bar!
|
| George Gee
|
|
|
| *Sherry* has posted this message:
|
| Hello all!
| I wish to obtain the average of a number of numeric cells but wish
| this average to be ongoing rather than restricted to a range of cells.
|
| For example
| =AVERAGE(D1317) will only give the average of the cells D13 to D17
| but I will be continually adding more data and wish for this to be
| calculated in the average also.
|
| My overall objective here is to carry out evaluations on staff
| performance and as each new review arrives from a client regarding a
| staff member, I will be adding a new row to include this
| data.Therefore need to have the number of all reviews received
| whether it be five or fifty to be calculated in the overall average.
|
| I have not been able to identify anything in the application help to
| cover this use of the average function and help will be greatfully
| appreciated
|
| Cheers Sherry
|
|


  #10  
Old May 7th, 2005, 10:29 PM
George Gee
external usenet poster
 
Posts: n/a
Default

Rodney

Being only an 'average' user of Excel, myself, it is sometimes the simple
things that get overlooked by the 'experts', that are of some use to us
'mere mortals'!

Let me guess how you were counting cells... one, two, three, four........?

Good to know I have helped someone!

George Gee



*Rodney* has posted this message:

Thankyou George,
I wasn't aware that existed.
(I am not game to reveal how I was counting cells before this)
Best Regards,
Rodney




Sherry

An easy way that doesn't use any formula.
Right-click the Status Bar, and put a checkmark next to 'Average'.
Highlight the cells you wish to average, the average of these cells
will be displayed on the Status Bar!

George Gee



*Sherry* has posted this message:

Hello all!
I wish to obtain the average of a number of numeric cells but wish
this average to be ongoing rather than restricted to a range of
cells.

For example
=AVERAGE(D1317) will only give the average of the cells D13 to D17
but I will be continually adding more data and wish for this to be
calculated in the average also.

My overall objective here is to carry out evaluations on staff
performance and as each new review arrives from a client regarding a
staff member, I will be adding a new row to include this
data.Therefore need to have the number of all reviews received
whether it be five or fifty to be calculated in the overall average.

I have not been able to identify anything in the application help to
cover this use of the average function and help will be greatfully
appreciated

Cheers Sherry




 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
I want to use the MATCH function with the AVERAGE function but I . Miguel Worksheet Functions 2 April 23rd, 2005 05:29 PM
Excel 2002 and 2000 co-install. Control Which Starts ? cnuk General Discussion 2 January 17th, 2005 08:07 PM
Text to Number - Difference between Excel 2000 & 2002 claytorm General Discussion 8 August 23rd, 2004 10:53 PM
Excel 2002 "auto" number format Norman Harker Worksheet Functions 0 February 26th, 2004 04:40 AM


All times are GMT +1. The time now is 10:41 PM.


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