Jump to content

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

Recommended Posts

Posted

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.

Posted

Relate Students to Classes by unique student id. Then you can create a Sum(classes::cost) in the Students table.

Posted

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.

Posted

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 ) ) ).

Posted

To clarify, graphic would be a global container field containing the desired graphic.

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 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.