Hi,
This question is in regards to Access 2007, but I'm sure advice would be applicable for all versions. I hope so anyway
.
I have three main tables I'm working with: Student, Service, and StudentService (which is a junction table for Student and Service). Here is the structure:
Student Table
StudentID (pk)
LastName
FirstName
ServiceTable
ServiceID (pk)
ServiceName
ServiceDate
StudentService Table
StudentServiceID (pk)
StudentID (fk)
ServiceID (fk)
So far, I've managed to use a form to create services in the Service table. Now, I'm trying to figure out how to enroll students into those services. I know that means I have to find a way to get the StudentID, and the ServiceID into the StudentService table. I am able to do this manually, but most likely I'm going to need to be doing this for hundreds of records, so I'm looking for a better way, through a form is possible.
Ideally, my users would be able to choose the Service they want to enroll students in, then choose the students to enroll in that service. Does this make sense? Is it even possible? I've tried so many different approaches (mostly centered around append queries), but am coming up with nothing but frustration. If anyone can help, I'd really appreciate it. Thank you!
This question is in regards to Access 2007, but I'm sure advice would be applicable for all versions. I hope so anyway
I have three main tables I'm working with: Student, Service, and StudentService (which is a junction table for Student and Service). Here is the structure:
Student Table
StudentID (pk)
LastName
FirstName
ServiceTable
ServiceID (pk)
ServiceName
ServiceDate
StudentService Table
StudentServiceID (pk)
StudentID (fk)
ServiceID (fk)
So far, I've managed to use a form to create services in the Service table. Now, I'm trying to figure out how to enroll students into those services. I know that means I have to find a way to get the StudentID, and the ServiceID into the StudentService table. I am able to do this manually, but most likely I'm going to need to be doing this for hundreds of records, so I'm looking for a better way, through a form is possible.
Ideally, my users would be able to choose the Service they want to enroll students in, then choose the students to enroll in that service. Does this make sense? Is it even possible? I've tried so many different approaches (mostly centered around append queries), but am coming up with nothing but frustration. If anyone can help, I'd really appreciate it. Thank you!