I'm writing a simple database that will keep track of all the schools that my unit teaches. I have a field [ISR] (meaning instructor student ratio) I have a table created hith all of our courses and the ISR for each course. When the EU selects the dropdown to enter a course i would like the isr field to be auto filled with the ratio from the table.
example of isr table:
mos ratio
92y10 12
92y30 12
92g10 15
92s30 6
this is a small excerpt from the table and the ISR will remain constant over time but different per the mos .. I have the dropdown field on the form named [COURSE]
I currently have a querry wrote : select ratio from [ISR TABLE] where mos = [COURSE]; and that seems to work for the querry but i dont know how to make the field [ISR] run it.