#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Golf Anyone

I have come to realize that I know less about Excel than I thought. Please
help. I am constructing a growing database of golf scores from which I am
performing simple calculations (sum, average, standard deviation) for each
player represented. I add about 150 rows of information (one per player) per
week, then sort it by player name. The problem I am running into is when I
do this is changes the locations of my calculations into my summary table.
This requires me to manually adjust them, taking way to much time. In the
end I will have about 250 players who have played 1 to 20 tournaments. The
length of my raw data will be around 4000 lines.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default Golf Anyone

On Jun 5, 11:48 am, duchem02
wrote:
I have come to realize that I know less about Excel than I thought. Please
help. I am constructing a growing database of golf scores from which I am
performing simple calculations (sum, average, standard deviation) for each
player represented. I add about 150 rows of information (one per player) per
week, then sort it by player name. The problem I am running into is when I
do this is changes the locations of my calculations into my summary table.
This requires me to manually adjust them, taking way to much time. In the
end I will have about 250 players who have played 1 to 20 tournaments. The
length of my raw data will be around 4000 lines.


I don't think you told us enough. What are the calculations that are
getting messed up? Sounds like you need database functions instead of
plain functions. Or SUMIF instead of SUM, stuff like that.
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Golf Anyone

Sorry, I'll try again.

I am trying to get to a summary report that will contain columns labeled
player name, total events, rounds played, average rounds per event, average
place finished, scoring average (rounds 1,2,3,4 and total), minimum score
recorded (rounds 1,2,3,4, and total), maximum score recorded (rounds 1,2,3,4
and total), standard deviation of scores (rounds 1,2,3,4 and total), total
shots made, total winnings and dollars per shot made.

Each week I add the latest tournament results to my raw data columns and
sort by the players name, ending up with each tournament result as a single
line item. I am currently at 7 tournaments meaning there are players with
results from 1 to 7 tournaments. At the end of the sixth week, I sorted all
of the raw data by player name and placed simple calculation in the summary
report.

Example:
Player 1 played in 5 tournaments so their statistics are stored in rows 1-5
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5

Player 2 played in 3 tournaments so their statistics are stored in rows 6-8
Line 6 = tournament 1
Line 7 = tournament 2
Line 8 = tournament 5 (if they missed tournaments 3 and 4)

Player 3 played in 6 tournaments so their statistics are stored in rows 9-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6

.......this continues for about 200 players.


AFTER ADDING IN TOURNAMENT #7...

Player 1 played in 6 tournaments so their statistics are stored in rows 1-6
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5
Line 6 = tournament 7

But there summary report information again pulled from lines 1-5


Player 2 played in 4 tournaments so their statistics are stored in rows 7-10
Line 7 = tournament 1
Line 8 = tournament 2
Line 9 = tournament 5 (if they missed tournaments 3 and 4)
Line 10 = tournamnt 7

There summary report information again pulled from lines 6-8


Player 3 played in 6 tournaments so their statistics are stored in rows 10-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6


There summary report information again pulled from lines 6-8


You can imagine the result of this pattern on 1000 lines of data.

I tried assigning each player 20 rows into which their data would be loaded.
Player 1 would be assigned rows 1-20 =sum(aa1:aa20)
Player 2 would be assigned rows 21-40 =sum(aa21:aa40)
Player 3 would be assigned rows 41-60 =sum(aa41:aa60)

After adding results from the latest tournament (#7) I then deleted an empty
row so that each player still only had twenty rows. This still did not work.

I need something that will summarize 28 different statistical columns (sum,
average, standard deviation, minimum and maximum) for each players results
added and re-sorted weekly. Calculations will also have to take into
consideration empty cells and various number of tournaments (1-20).






The results of tournament #7, about 145 lines of new data were added into to
my raw data and sorted again by player name Now the original calculations on
my summary report (one line per player) do not line up with the original rows
of data as stated above.





"duchem02" wrote:

I have come to realize that I know less about Excel than I thought. Please
help. I am constructing a growing database of golf scores from which I am
performing simple calculations (sum, average, standard deviation) for each
player represented. I add about 150 rows of information (one per player) per
week, then sort it by player name. The problem I am running into is when I
do this is changes the locations of my calculations into my summary table.
This requires me to manually adjust them, taking way to much time. In the
end I will have about 250 players who have played 1 to 20 tournaments. The
length of my raw data will be around 4000 lines.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 762
Default Golf Anyone

duchem02 -

Maybe you could arrange the data in standard flat-file database format (a
line for each player/event/score/etc combination), and then use the Pivot
Table feature to obtain your summaries.

- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel


"duchem02" wrote in message
...
Sorry, I'll try again.

I am trying to get to a summary report that will contain columns labeled
player name, total events, rounds played, average rounds per event,
average
place finished, scoring average (rounds 1,2,3,4 and total), minimum score
recorded (rounds 1,2,3,4, and total), maximum score recorded (rounds
1,2,3,4
and total), standard deviation of scores (rounds 1,2,3,4 and total),
total
shots made, total winnings and dollars per shot made.

Each week I add the latest tournament results to my raw data columns and
sort by the players name, ending up with each tournament result as a
single
line item. I am currently at 7 tournaments meaning there are players with
results from 1 to 7 tournaments. At the end of the sixth week, I sorted
all
of the raw data by player name and placed simple calculation in the
summary
report.

Example:
Player 1 played in 5 tournaments so their statistics are stored in rows
1-5
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5

Player 2 played in 3 tournaments so their statistics are stored in rows
6-8
Line 6 = tournament 1
Line 7 = tournament 2
Line 8 = tournament 5 (if they missed tournaments 3 and 4)

Player 3 played in 6 tournaments so their statistics are stored in rows
9-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6

......this continues for about 200 players.


AFTER ADDING IN TOURNAMENT #7...

Player 1 played in 6 tournaments so their statistics are stored in rows
1-6
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5
Line 6 = tournament 7

But there summary report information again pulled from lines 1-5


Player 2 played in 4 tournaments so their statistics are stored in rows
7-10
Line 7 = tournament 1
Line 8 = tournament 2
Line 9 = tournament 5 (if they missed tournaments 3 and 4)
Line 10 = tournamnt 7

There summary report information again pulled from lines 6-8


Player 3 played in 6 tournaments so their statistics are stored in rows
10-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6


There summary report information again pulled from lines 6-8


You can imagine the result of this pattern on 1000 lines of data.

I tried assigning each player 20 rows into which their data would be
loaded.
Player 1 would be assigned rows 1-20 =sum(aa1:aa20)
Player 2 would be assigned rows 21-40 =sum(aa21:aa40)
Player 3 would be assigned rows 41-60 =sum(aa41:aa60)

After adding results from the latest tournament (#7) I then deleted an
empty
row so that each player still only had twenty rows. This still did not
work.

I need something that will summarize 28 different statistical columns
(sum,
average, standard deviation, minimum and maximum) for each players results
added and re-sorted weekly. Calculations will also have to take into
consideration empty cells and various number of tournaments (1-20).






The results of tournament #7, about 145 lines of new data were added into
to
my raw data and sorted again by player name Now the original calculations
on
my summary report (one line per player) do not line up with the original
rows
of data as stated above.





"duchem02" wrote:

I have come to realize that I know less about Excel than I thought.
Please
help. I am constructing a growing database of golf scores from which I
am
performing simple calculations (sum, average, standard deviation) for
each
player represented. I add about 150 rows of information (one per player)
per
week, then sort it by player name. The problem I am running into is when
I
do this is changes the locations of my calculations into my summary
table.
This requires me to manually adjust them, taking way to much time. In
the
end I will have about 250 players who have played 1 to 20 tournaments.
The
length of my raw data will be around 4000 lines.





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default Golf Anyone

On Jun 5, 3:24 pm, duchem02
wrote:
Sorry, I'll try again.

I am trying to get to a summary report that will contain columns labeled
player name, total events, rounds played, average rounds per event, average
place finished, scoring average (rounds 1,2,3,4 and total), minimum score
recorded (rounds 1,2,3,4, and total), maximum score recorded (rounds 1,2,3,4
and total), standard deviation of scores (rounds 1,2,3,4 and total), total
shots made, total winnings and dollars per shot made.

Each week I add the latest tournament results to my raw data columns and
sort by the players name, ending up with each tournament result as a single
line item. I am currently at 7 tournaments meaning there are players with
results from 1 to 7 tournaments. At the end of the sixth week, I sorted all
of the raw data by player name and placed simple calculation in the summary
report.

Example:
Player 1 played in 5 tournaments so their statistics are stored in rows 1-5
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5

Player 2 played in 3 tournaments so their statistics are stored in rows 6-8
Line 6 = tournament 1
Line 7 = tournament 2
Line 8 = tournament 5 (if they missed tournaments 3 and 4)

Player 3 played in 6 tournaments so their statistics are stored in rows 9-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6

......this continues for about 200 players.

AFTER ADDING IN TOURNAMENT #7...

Player 1 played in 6 tournaments so their statistics are stored in rows 1-6
Line 1 = tournament 1
Line 2 = tournament 2
Line 3 = tournamnet 3
Line 4 = tournament 4
Line 5 = tournament 5
Line 6 = tournament 7

But there summary report information again pulled from lines 1-5

Player 2 played in 4 tournaments so their statistics are stored in rows 7-10
Line 7 = tournament 1
Line 8 = tournament 2
Line 9 = tournament 5 (if they missed tournaments 3 and 4)
Line 10 = tournamnt 7

There summary report information again pulled from lines 6-8

Player 3 played in 6 tournaments so their statistics are stored in rows 10-14
Line 9 = tournament 1
Line 10 = tournament 2
Line 11 = tournament 3
Line 12 = tournament 4
Line 13 = tournament 5
Line 14 = tournament 6

There summary report information again pulled from lines 6-8

You can imagine the result of this pattern on 1000 lines of data.

I tried assigning each player 20 rows into which their data would be loaded.
Player 1 would be assigned rows 1-20 =sum(aa1:aa20)
Player 2 would be assigned rows 21-40 =sum(aa21:aa40)
Player 3 would be assigned rows 41-60 =sum(aa41:aa60)

After adding results from the latest tournament (#7) I then deleted an empty
row so that each player still only had twenty rows. This still did not work.

I need something that will summarize 28 different statistical columns (sum,
average, standard deviation, minimum and maximum) for each players results
added and re-sorted weekly. Calculations will also have to take into
consideration empty cells and various number of tournaments (1-20).

The results of tournament #7, about 145 lines of new data were added into to
my raw data and sorted again by player name Now the original calculations on
my summary report (one line per player) do not line up with the original rows
of data as stated above.

"duchem02" wrote:
I have come to realize that I know less about Excel than I thought. Please
help. I am constructing a growing database of golf scores from which I am
performing simple calculations (sum, average, standard deviation) for each
player represented. I add about 150 rows of information (one per player) per
week, then sort it by player name. The problem I am running into is when I
do this is changes the locations of my calculations into my summary table.
This requires me to manually adjust them, taking way to much time. In the
end I will have about 250 players who have played 1 to 20 tournaments. The
length of my raw data will be around 4000 lines.


You are using straight SUM formulas and similar. Switch to the DSUM,
DSTDEV, etc. These will encompass your whole database as you add
lines, if you set the range large enough to cover all the entries you
will make, all 4000 lines. (use 5000 to be sure, perhaps) Or possibly
the strangely universal SUMPRODUCT, but that will work slower.

You do have to set up criteria cells for the Dxxx formulas, but you
can just shove those off to the side or to a different sheet to be out
of the way.
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
Golf best 2 out of 4 scores Karl Excel Discussion (Misc queries) 7 October 23rd 06 09:11 PM
Golf Formula Help LOU Excel Worksheet Functions 3 August 24th 06 11:07 PM
golf score Bob Excel Discussion (Misc queries) 1 July 11th 06 09:25 AM
golf handicap neo314trinity Excel Discussion (Misc queries) 5 March 15th 06 06:46 PM
Golf Handicaps David Clark Excel Discussion (Misc queries) 3 September 12th 05 04:22 AM


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