I'm creating a simple database for a school. I currently have 2 forms namely frmStudents and frmGrades. I use grades to refer to grade 1, 2, 3, .., 12 rather than exam grades. The frmGrades contains the fields grade (primary key) and Fees. The frmStudents contains ID (primary key), name, grade, fees etc. The ID is an auto-generated number, name is text, and grade is linked to the field grade in frmGrades.
I'm intending to first use frmGrades to enter all grades and the corresponding fees. Then I'll enter students information into frmStudents choosing one of the grades from the grades list. My problem is how do I autopopulate the fees value based on the chosen grade?
I need to achieve this in VBA but I'm not familiar with the language at all. In psuedocode this is what I'm trying to achieve:
Private Sub frmStudents_Grade_AfterUpdate()
frmStudents.Fees.text = "Select Fees from frmGrades where frmGrades.Grade = frmStudents.Grade"
End Sub
I hope my question is clear. Thanks in advance.