I don't know if I can explain this properly but here goes.
I have three tables.
Personnel(ServiceNumber[primary key], Name, Initials, etc...)
Operations(OperationName)
DeployedPersonnel(ServiceNumber[foreign key], OperationName[foreign key], start date, end date)
DeployedPersonnel as you can see is the relationship between Personnel and Operations.
What I would like is a form based off of DeployedPersonnel where the user selects a service number and that persons associated data from Personnel is displayed alongside. This is so the user can verify that the employee they selected is the one they want before they enter in the other fields.
Is there a way I could do this?
I have three tables.
Personnel(ServiceNumber[primary key], Name, Initials, etc...)
Operations(OperationName)
DeployedPersonnel(ServiceNumber[foreign key], OperationName[foreign key], start date, end date)
DeployedPersonnel as you can see is the relationship between Personnel and Operations.
What I would like is a form based off of DeployedPersonnel where the user selects a service number and that persons associated data from Personnel is displayed alongside. This is so the user can verify that the employee they selected is the one they want before they enter in the other fields.
Is there a way I could do this?