Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 2
Default Please Help! Can't solve excel problem

I've dabbled in excel over the years but have hit a cross roads. I help teach a middle school track summer camp. Now every week we do certain timed activities and keep track of the results. Here is the problem- I can't find a way to average these results.

My excel sheet is set up with 5 sheets. Sheets 1-4 Being labeled Week1, Week2, Week3, Week4 and sheet 5 is for my calculations. Each sheet is set up identical with students name in column A (i.e. John, Tim, Sarah, Connie) and the timed events in the remaining columns (ex. 100m, 200m, 3 cone drill, etc, etc)

Now I would like to have a master sheet that will tell me Johns (and every other students) average time for each event across the 4 week period. (i.e. average time for 100m, 200m, 3 cone drill, etc) The problem i seem to be running into is that John is not always in cell A1 one week he will be in cell A1 the next week he will be in cell A19.

Any help would be appreciated.
  #2   Report Post  
Senior Member
 
Posts: 663
Default

Quote:
Originally Posted by sully017 View Post
I've dabbled in excel over the years but have hit a cross roads. I help teach a middle school track summer camp. Now every week we do certain timed activities and keep track of the results. Here is the problem- I can't find a way to average these results.

My excel sheet is set up with 5 sheets. Sheets 1-4 Being labeled Week1, Week2, Week3, Week4 and sheet 5 is for my calculations. Each sheet is set up identical with students name in column A (i.e. John, Tim, Sarah, Connie) and the timed events in the remaining columns (ex. 100m, 200m, 3 cone drill, etc, etc)

Now I would like to have a master sheet that will tell me Johns (and every other students) average time for each event across the 4 week period. (i.e. average time for 100m, 200m, 3 cone drill, etc) The problem i seem to be running into is that John is not always in cell A1 one week he will be in cell A1 the next week he will be in cell A19.

Any help would be appreciated.
Here is a VERY basic example of what I think you mean.

Let me know if you need anything explaining.

If this is along the right line of what you're after, I'm more than happy to help you develop it to meet all your needs.

S.
Attached Files
File Type: zip sully017 example.zip (11.4 KB, 41 views)

Last edited by Spencer101 : July 30th 12 at 06:37 PM
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,045
Default Please Help! Can't solve excel problem

On Mon, 30 Jul 2012 03:27:33 +0000, sully017 wrote:


I've dabbled in excel over the years but have hit a cross roads. I help
teach a middle school track summer camp. Now every week we do certain
timed activities and keep track of the results. Here is the problem- I
can't find a way to average these results.

My excel sheet is set up with 5 sheets. Sheets 1-4 Being labeled Week1,
Week2, Week3, Week4 and sheet 5 is for my calculations. Each sheet is
set up identical with students name in column A (i.e. John, Tim, Sarah,
Connie) and the timed events in the remaining columns (ex. 100m, 200m, 3
cone drill, etc, etc)

Now I would like to have a master sheet that will tell me Johns (and
every other students) average time for each event across the 4 week
period. (i.e. average time for 100m, 200m, 3 cone drill, etc) The
problem i seem to be running into is that John is not always in cell A1
one week he will be in cell A1 the next week he will be in cell A19.

Any help would be appreciated.


Problem is that AVERAGEIF, which you could use on a single sheet, does not accept 3D (multisheet) references.
So one way is to execute SUMIF and COUNTIF on each sheet, then divide the sum by the count to get the average.

Depending on exactly how your sheet is set up, something like this might work:

A2:
=(SUMIF(Week1!$A$2:$A$20,A2,Week1!B$2:B$20)+
SUMIF(Week2!$A$2:$A$20,A2,Week2!B$2:B$20)+
SUMIF(Week3!$A$2:$A$20,A2,Week3!B$2:B$20)+
SUMIF(Week4!$A$2:$A$20,A2,Week4!B$2:B$20)+
SUMIF(Week5!$A$2:$A$20,A2,Week5!B$2:B$20))/
(COUNTIF(Week1!$A$2:$A$20,A2) +
COUNTIF(Week2!$A$2:$A$20,A2)+
COUNTIF(Week3!$A$2:$A$20,A2)+
COUNTIF(Week4!$A$2:$A$20,A2)+
COUNTIF(Week5!$A$2:$A$20,A2))

The trick is to use addressing modes so the formulas will self-adjust as you fill right and/or down.

You could also try using the Pivot Table Wizard to set up a pivot table consolidating multiple ranges.
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,522
Default Please Help! Can't solve excel problem

On Sunday, July 29, 2012 10:27:33 PM UTC-5, sully017 wrote:
I've dabbled in excel over the years but have hit a cross roads. I help

teach a middle school track summer camp. Now every week we do certain

timed activities and keep track of the results. Here is the problem- I

can't find a way to average these results.



My excel sheet is set up with 5 sheets. Sheets 1-4 Being labeled Week1,

Week2, Week3, Week4 and sheet 5 is for my calculations. Each sheet is

set up identical with students name in column A (i.e. John, Tim, Sarah,

Connie) and the timed events in the remaining columns (ex. 100m, 200m, 3

cone drill, etc, etc)



Now I would like to have a master sheet that will tell me Johns (and

every other students) average time for each event across the 4 week

period. (i.e. average time for 100m, 200m, 3 cone drill, etc) The

problem i seem to be running into is that John is not always in cell A1

one week he will be in cell A1 the next week he will be in cell A19.



Any help would be appreciated.









--

sully017


You should always provide a meaningful subject line. If desired send file to dguillett1 @gmail.com with complete details
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
Please help me solve my problem Sacha David Excel Programming 5 March 5th 10 09:58 AM
excel function solve problem? douglas Excel Worksheet Functions 2 March 30th 09 04:36 AM
CAN ANYONE PLEASE SOLVE MY PROBLEM K[_2_] Excel Programming 1 January 22nd 08 05:23 PM
How to solve a complex problem using Excel 2003 Marcolino Excel Discussion (Misc queries) 2 August 23rd 07 06:10 PM
Problem when multipple users access shared xl-file at the same time, macrocode for solve this problem? OCI Excel Programming 0 May 16th 04 10:40 PM


All times are GMT +1. The time now is 10:48 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"