At the moment I have the following:
TblPlantType
PlantTypeID
PlantType
TblPlantTypeList
PlantTypeID
ProjectTypeID
JobProposalNo
TblProjectInformation
ProjectID
TitleID
WorkerID
JobProposalNo
Requisition No
Mobilization Date
Demobilization Date
TblResumes
WorkerID
First Name
Last Name
Address
City
State
Zip Code
Right now I have the following Find As You Type Form:
WorkerID First Name Last Name Country Nationality Career Title Resume Link Experience
Experience is:
Experience: Concatenate("SELECT Experience FROM tblExperience E INNER JOIN TblResumeExperience R ON E.ExperienceID=R.ExperienceID WHERE WorkerID=" & WorkerID)
All other fields coem from TblResume.
I need to make a field for PlantType like Experience, but they are tied to the JobProposalNo, which I am having a hard time linking the Plant Type to the JobProposalNo and WorkerID without making 11k records?
Is it even possible?
TblPlantType
PlantTypeID
PlantType
TblPlantTypeList
PlantTypeID
ProjectTypeID
JobProposalNo
TblProjectInformation
ProjectID
TitleID
WorkerID
JobProposalNo
Requisition No
Mobilization Date
Demobilization Date
TblResumes
WorkerID
First Name
Last Name
Address
City
State
Zip Code
Right now I have the following Find As You Type Form:
WorkerID First Name Last Name Country Nationality Career Title Resume Link Experience
Experience is:
Experience: Concatenate("SELECT Experience FROM tblExperience E INNER JOIN TblResumeExperience R ON E.ExperienceID=R.ExperienceID WHERE WorkerID=" & WorkerID)
All other fields coem from TblResume.
I need to make a field for PlantType like Experience, but they are tied to the JobProposalNo, which I am having a hard time linking the Plant Type to the JobProposalNo and WorkerID without making 11k records?
Is it even possible?