Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

Have three files - students, math scores and report cards. I want the teacher who logs on to go to report cards and do a find for their students. Then I have a button that I would like the teacher to click and it opens the math scores file with the same students already found - how do I write this? I think this is scripting 101, but I haven't passed that yet - THANKS.

Posted

Hi,

Assuming your Report Card is a file where each student is affiliated to a teacher, by the TeacherID, the quicker would be to involve relationships rather than a find process.

1. Create a global field, gTeacherID

2. Define a selfRelationship "Self#gTeacherID#TeacherID" (gTeacherID matching TeacherID).

3. Define a Value List "RelatedStudents" using this relationship

4. Create a global text field gStudentIDsHolder

5. Create a relationship to the Math Scores file "Math#gStudentIDsHolder#StudentID"

A 2 lines script :

SetField[gStudentIDsHolder, ValueListItems(Status(CurrentFileName),"RelatedStudents")]

GoToRelated Records ["Math#gStudentIDsHolder#StudentID"- show only]

and maybe an external script which would locate the targeted Layout.

HTH

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