Jump to content

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

Recommended Posts

Good afternoon,

This might be pretty straightforward but it is causing me problems.

I have a table of student registrations that pulls students in from the Student table. One student can have multiple registrations in one Session and Year in the Registrations table.

I need to be able to count only those students with less than 4 registrations.

For example:

John Doe has three registration records for Summer 1 2007.

Jane Doe has five registration records for Summer 1 2007.

According to this example, I would need to be able to see that only 1 student is registered for less than 4 classes on a report.

Any ideas?

Edited by Guest
Link to comment
Share on other sites

That might work but I'm looking for those students with less than 4 registration records in a user-specified Session and Year.

John Doe might have 3 registration records in Summer 1 2007 but will registration records in many other Sessions and years as well. How do I identify those with less than 4 records in a given Session and year?

Link to comment
Share on other sites

Well, you may need a separate flag field in Students for each session and year, each with a separate relationship from Student::Registration by the StudentID, SessionID, Year. In Students, make global calc fields that store the Session ID and Year that you'll use in the relationship.

So, in Students, you would have:

flag_Session1Year2007 = if (count ( students::registration by Sess1Yr07)<4, 1, 0)

Link to comment
Share on other sites

This topic is 6175 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.