Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 5951 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Main table is student ID information including a "mid-point" date that is individual to each student. Child portal table has student scores, each with a date. I have been trying to make a calculation field that will sum the student's scores after the mid-point date (which is entered into the main table when the student reaches that point). I'm sure this is simple.... Thanks for the help everyone.

Posted

One way:

Define a new relationship between Students and a second occurrence of Scores as:

Students::StudentID = Scores 2::StudentID

AND

Students::MidPoint < Scores 2::Date

In Students, use Sum ( Scores 2::Score ) to sum the scores after the mid-point date.

Another way:

In Scores, define a calculation field cScoreAfter =

Case ( Date > Students::MidPoint ; Score )

In Students, use Sum ( Scores::cScoreAfter ) to sum the scores after the mid-point date.

This topic is 5951 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.