Arcanoi Posted August 3, 2004 Posted August 3, 2004 I am currently designing a database where I have one table with classes and one table with students, I need to know how to get the Cost of the classes from classes and do a total owed amount on the student, any help would be aprricated.
-Queue- Posted August 3, 2004 Posted August 3, 2004 Relate Students to Classes by unique student id. Then you can create a Sum(classes::cost) in the Students table.
Arcanoi Posted August 3, 2004 Author Posted August 3, 2004 New problem if the still owe money... I currently have the field go Balance = Total_Amount_Due - Total_Amount_Paid I need to have a flag either a graphic or Red text come up and say that they haven't paid.
-Queue- Posted August 3, 2004 Posted August 3, 2004 I assume you mean you want the flag to appear in a different field. You could do it like Case( Balance > 0; graphic ) or Case( Balance > 0; TextColor ( "Unpaid" ; RGB ( 255 ; 0 ; 0 ) ) ).
Arcanoi Posted August 3, 2004 Author Posted August 3, 2004 Yes a flag in a diffrent field I'll try those out and see if they work.
-Queue- Posted August 3, 2004 Posted August 3, 2004 To clarify, graphic would be a global container field containing the desired graphic.
Arcanoi Posted August 4, 2004 Author Posted August 4, 2004 How do I set the graphics field in layout mode? I am confused on how to make this work.
Recommended Posts
This topic is 7485 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