Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Formula across multiple sheets

I am using Excel 2003.

I am a basketball coach looking to create an effeciency chart for my
players. What I have so far is a seperate sheet for all of our games. There
is a row for each player and columns for each stat. The last column is their
Effeciency Rating for that particular game that is calculate by a formula I
created.

Also on each sheet (one sheet per game remember) I have a box that indicates
whether the game was at home or on the road. I would like to be able to make
a formula for my last sheet that will be able to average ONLY the home games
and then another that would average their rating for ONLY the road games. So,
in my logic it would be "IF LocationCell = H, then average the rating" or "IF
LocationCell is R, then average the rating"

I hope this makes sense- thanks for your help.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 258
Default Formula across multiple sheets

Doug --

In the long run, I think it would be better to put all the data on one page
in one long table. You'd have to add two additional columns perhaps
(Against, and Home/Away). The benefit is that, once you've done that, you
can create a Pivot Table that would allow you to answer questions that come
up on the fly.

To do this, add the additional info to the data before you copy it into the
long table, then move it so that each player's activity is a single line, a
single "record", in the table. Then use DataPivot Table. It'll take a
couple of minutes to figure it out, but the Help is pretty good and you'll
like it.

HTH

"DougN" wrote:

I am using Excel 2003.

I am a basketball coach looking to create an effeciency chart for my
players. What I have so far is a seperate sheet for all of our games. There
is a row for each player and columns for each stat. The last column is their
Effeciency Rating for that particular game that is calculate by a formula I
created.

Also on each sheet (one sheet per game remember) I have a box that indicates
whether the game was at home or on the road. I would like to be able to make
a formula for my last sheet that will be able to average ONLY the home games
and then another that would average their rating for ONLY the road games. So,
in my logic it would be "IF LocationCell = H, then average the rating" or "IF
LocationCell is R, then average the rating"

I hope this makes sense- thanks for your help.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default Formula across multiple sheets

doug, i am also movice at this, but I would sort the sheets of each game so
I will get two lists, which can be calculated. and in the last sheet u will
refer back to the calculation u did already on the other sheets. but the pros
will probably will have a better idea.
best regards
bee

"DougN" wrote:

I am using Excel 2003.

I am a basketball coach looking to create an effeciency chart for my
players. What I have so far is a seperate sheet for all of our games. There
is a row for each player and columns for each stat. The last column is their
Effeciency Rating for that particular game that is calculate by a formula I
created.

Also on each sheet (one sheet per game remember) I have a box that indicates
whether the game was at home or on the road. I would like to be able to make
a formula for my last sheet that will be able to average ONLY the home games
and then another that would average their rating for ONLY the road games. So,
in my logic it would be "IF LocationCell = H, then average the rating" or "IF
LocationCell is R, then average the rating"

I hope this makes sense- thanks for your help.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Formula across multiple sheets

Thanks for the quick help guys.

Pdberger- I have a cell on each sheet that signifies where the game is Home
or away...its basically noted by an "H" or an "A". I was thinking that I
could just average the cells IF cell#=H.

I can put it all on one table, but I would like to be able to seperate them
so that I can't print game by game tables if my head coach asks for them.
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 258
Default Formula across multiple sheets

Doug --

That's the cool thing about pivot tables -- you can pull out data by game,
or chronologically, or home/away chronologically, or whether they tied their
left shoe first on away games, whatever.

Try it you'll like it.

"DougN" wrote:

Thanks for the quick help guys.

Pdberger- I have a cell on each sheet that signifies where the game is Home
or away...its basically noted by an "H" or an "A". I was thinking that I
could just average the cells IF cell#=H.

I can put it all on one table, but I would like to be able to seperate them
so that I can't print game by game tables if my head coach asks for them.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Formula across multiple sheets

If you have a 20 game season with, say, 10 home games and 10 road games you
might be able to simplify your life if you kept each home game on a separate
sheet with sheet names such as HOME1, HOME2 .... HOME10 and the road games
on separate sheets with with sheets names such as ROAD1, ROAD2 .... ROAD10.
If all the home games are grouped together followed by the road games, on
your last sheet, SUMMARY, you can simply average a cell such as A1 on each
sheet with something like:

=AVERAGE(HOME1:HOME10!A1) for the home games or
=AVERAGE(ROAD1:ROAD10!A1) for the road games or
=AVERAGE(HOME1:ROAD10!A1) for all the games.

Also you can easily print your sheets, one for each game

Just be certain the the first home game sheet is HOME1 and the last home
game sheet is HOME10 and the other home game sheets are located between
HOME1 and HOME10 in the workbook. Same for the road games.

Tyro


"DougN" wrote in message
...
I am using Excel 2003.

I am a basketball coach looking to create an effeciency chart for my
players. What I have so far is a seperate sheet for all of our games.
There
is a row for each player and columns for each stat. The last column is
their
Effeciency Rating for that particular game that is calculate by a formula
I
created.

Also on each sheet (one sheet per game remember) I have a box that
indicates
whether the game was at home or on the road. I would like to be able to
make
a formula for my last sheet that will be able to average ONLY the home
games
and then another that would average their rating for ONLY the road games.
So,
in my logic it would be "IF LocationCell = H, then average the rating" or
"IF
LocationCell is R, then average the rating"

I hope this makes sense- thanks for your help.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Formula across multiple sheets

But I would go the pivot table route.

Tyro

"Tyro" wrote in message
...
If you have a 20 game season with, say, 10 home games and 10 road games
you might be able to simplify your life if you kept each home game on a
separate sheet with sheet names such as HOME1, HOME2 .... HOME10 and the
road games on separate sheets with with sheets names such as ROAD1, ROAD2
.... ROAD10. If all the home games are grouped together followed by the
road games, on your last sheet, SUMMARY, you can simply average a cell
such as A1 on each sheet with something like:

=AVERAGE(HOME1:HOME10!A1) for the home games or
=AVERAGE(ROAD1:ROAD10!A1) for the road games or
=AVERAGE(HOME1:ROAD10!A1) for all the games.

Also you can easily print your sheets, one for each game

Just be certain the the first home game sheet is HOME1 and the last home
game sheet is HOME10 and the other home game sheets are located between
HOME1 and HOME10 in the workbook. Same for the road games.

Tyro


"DougN" wrote in message
...
I am using Excel 2003.

I am a basketball coach looking to create an effeciency chart for my
players. What I have so far is a seperate sheet for all of our games.
There
is a row for each player and columns for each stat. The last column is
their
Effeciency Rating for that particular game that is calculate by a formula
I
created.

Also on each sheet (one sheet per game remember) I have a box that
indicates
whether the game was at home or on the road. I would like to be able to
make
a formula for my last sheet that will be able to average ONLY the home
games
and then another that would average their rating for ONLY the road games.
So,
in my logic it would be "IF LocationCell = H, then average the rating" or
"IF
LocationCell is R, then average the rating"

I hope this makes sense- thanks for your help.





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
How reference multiple sheets in a formula Rick Excel Discussion (Misc queries) 5 February 11th 08 02:58 PM
IF formula over multiple sheets JaB Excel Discussion (Misc queries) 4 January 22nd 07 12:36 PM
formula to add up on multiple sheets Grd Excel Worksheet Functions 2 December 20th 06 05:37 PM
entering same formula in multiple sheets AB Excel Worksheet Functions 1 October 30th 06 08:21 PM
How can i use data from multiple sheets in a formula? Dave Grainger Excel Discussion (Misc queries) 3 August 8th 06 02:53 AM


All times are GMT +1. The time now is 07:01 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"