Newbies dmcgeary Posted September 2, 2004 Newbies Posted September 2, 2004 I am putting together a simple database for my school to use to keep football stats. Is there any way to take a field (for instance - GainLoss of Yds - and get a sum total of that field for all records? I can set the functions to do sums based on a condition, but I simply want the total for all records that have a value in that field.
-Queue- Posted September 2, 2004 Posted September 2, 2004 If you create a summary field for fieldA, it will give you this total based on the current found set. If you want the total for all records, regardless of the found set, you'll need to create a relationship based on a constant calculation or auto-enter field of 1. Then create a calculation field of Sum(constantrelationship::fieldA). If you are using version 7, a Cartesian join (using the X operator) relationship between any two data fields will give you the same result as a constant-to-constant one in previous versions.
Newbies dmcgeary Posted September 2, 2004 Author Newbies Posted September 2, 2004 Thank you. It worked perfectly. I do have another quick questions, though. If you have a value in a field that you want to take a sum for, can you do so using multiple conditional statements? For instance, every play made in the game stores the players number, the gain or loss in yardage, and the nature of the play (pass or run). Is there an easy way to sum up an individual player's running yards, etc? Is this a good spot for a case statement? Thank you again for all of your help! David
-Queue- Posted September 2, 2004 Posted September 2, 2004 Create a relationship based on the player's id. Then create a calculation of Sum(relationship::field) for as many fields as you need to summarize.
Recommended Posts
This topic is 7456 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now