I have three tables:
Employees - EmployeeProjects - Projects
Where each record in EmployeeProjects has a ProjectID, EmployeeID, and has an explanation of the employee's role on the project.
I am trying to do the following:
1) Have one new form, "NewProject," that creates a new project, with ProjectID autonumber, title, and other information (easy)
2) Submit NewProject and direct to another new form, "EmployeesOnProject" (easy)
3) EmployeesOnProject creates records in EmployeeProjects using the ProjectID from NewProject
I have no idea how to accomplish the third step. I've been doing similar steps where a user would select a Project from a list, and the ProjectID would populate using ProjectList.Selected.ID. Is there a way for the second new form to automatically use the ProjectID created in the first new form?
Thanks for everyone's help in advance