Automatic Program Name

  • Thread starter Thread starter jaeide
  • Start date Start date
J

jaeide

Guest
I am working on a form where I need to enter the program # and the program name with the number of credits. I would like to just enter the program # and the program name and number of credits will automatically be entered once I enter the program #. How would I accomplish this?
 
You should not be storing the program name and number of credits in the second table. This violates relational database design principles. Use a query that joins to the program table to retrieve that data whenever you need it. Base your forms and reports on queries rather than on tables so that this "unstored" information is available when you need it.
 

Users who are viewing this thread

Back
Top Bottom