Ben Feingold Posted October 29, 2004 Posted October 29, 2004 I have two databases: Behavior & Classes In the "Behavior" database I have a text field entitled Consequence where the staff chooses one of four possible consequences from a drop down: Time Out, Dismissal, EDR or Assessment. In the "Classes" database I have four number fields that correspond to the consequences above. I would like for those fields to tally the total number of each consequence for each student. Any thoughts? Ben Feingold Dearborn Academy Arlington, MA
transpower Posted October 30, 2004 Posted October 30, 2004 You need to create a summary field for each of the four consequences. Then, assuming that you have relation between the files, you would put each of those fields on the student layout. They will sum correctly for each student!
Ugo DI LUCA Posted October 30, 2004 Posted October 30, 2004 Hi, In Behaviour, create 4 calculations with these boolean formulas cTimeOut --------Consequences ="Time Out" cDismissal ------Consequences ="Dismissal" cEDR --------------Consequences ="EDR" cAssessment -- Consequences ="Assessment" Then in Classes, with a relationship StudentID::StudentID cTimeOut_u = Sum(BehaviourByStudentID::cTimeOut) cDismissal_u= Sum(BehaviourByStudentID::cDismissal) cEDR_u=Sum(BehaviourByStudentID::cEDR) cAssessment_u=Sum(BehaviourByStudentID::cAssessment)
Recommended Posts
This topic is 7398 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