Good Morning!~
I have the following Tables:
TblResumes
WorkerID
Last Name
First Name
Cell Phone
Email Address
TblProjectInformation
ProjectID
WorkerID
TitleID
Job/ProposalNo
TblConstructionServices
Job/ProposalNo
Client
Title
TblStaffRequirements
TitleID
Title
The TblConstruction Services is the Main Form
The TblProjectInformation is the Subform
The Worker ID is linked to the TblResume WorkerID field.
This is the Original RowSource for WorkerID:
SELECT TblResumes.WorkerID, TblResumes.[First Name], TblResumes.[Last Name] FROM TblResumes ORDER BY [Last Name];
Then to resolve the issue of the other fields not auto-populating on the selection of the worker in the WorkerID combobox I created this on the AfterUpdate:
[Forms]![FrmConstructionServices].[Form]![Job/ProposalNo].Requery
BUT I really like the idea of merging the First and Last Name in the WorkerID field better...saves redundant fields on the form.
This is what I have which works fine:
SELECT TblResumes.WorkerID, TblResumes.[Last Name] & ", " & TblResumes.[First Name] FROM TblResumes ORDER BY [Last Name];
But it is telling me now that it is creating duplicate records now? And its not auto-populating the other fields such as Cell Phone and Email address from the TblResumes.
It did not do that before?
Any help is GREATLY appreciated!~
I have the following Tables:
TblResumes
WorkerID
Last Name
First Name
Cell Phone
Email Address
TblProjectInformation
ProjectID
WorkerID
TitleID
Job/ProposalNo
TblConstructionServices
Job/ProposalNo
Client
Title
TblStaffRequirements
TitleID
Title
The TblConstruction Services is the Main Form
The TblProjectInformation is the Subform
The Worker ID is linked to the TblResume WorkerID field.
This is the Original RowSource for WorkerID:
SELECT TblResumes.WorkerID, TblResumes.[First Name], TblResumes.[Last Name] FROM TblResumes ORDER BY [Last Name];
Then to resolve the issue of the other fields not auto-populating on the selection of the worker in the WorkerID combobox I created this on the AfterUpdate:
[Forms]![FrmConstructionServices].[Form]![Job/ProposalNo].Requery
BUT I really like the idea of merging the First and Last Name in the WorkerID field better...saves redundant fields on the form.
This is what I have which works fine:
SELECT TblResumes.WorkerID, TblResumes.[Last Name] & ", " & TblResumes.[First Name] FROM TblResumes ORDER BY [Last Name];
But it is telling me now that it is creating duplicate records now? And its not auto-populating the other fields such as Cell Phone and Email address from the TblResumes.
It did not do that before?
Any help is GREATLY appreciated!~