E
Eric
I have two tables (People and Job). There is a One to
One relationship between the two tables. I have one
field in the People table (ppletitle) that is a combo box
and it looks up job titles in the Job table (jobtitle).
I want another field in the People table(pplegfy03)to
automatically enter in the corresponding hourly rate in
the Job table (jobgfy03) depending upon what is selected
in the ppletitle field. I have tried this SELECT
statement but it doesn't seem to work.
SELECT Job.jobgfy03, Job.jobtitle, Job.[jobid] FROM Job
WHERE ((job.jobtitle=[ppletitle]));
Thank you for your help in advance
One relationship between the two tables. I have one
field in the People table (ppletitle) that is a combo box
and it looks up job titles in the Job table (jobtitle).
I want another field in the People table(pplegfy03)to
automatically enter in the corresponding hourly rate in
the Job table (jobgfy03) depending upon what is selected
in the ppletitle field. I have tried this SELECT
statement but it doesn't seem to work.
SELECT Job.jobgfy03, Job.jobtitle, Job.[jobid] FROM Job
WHERE ((job.jobtitle=[ppletitle]));
Thank you for your help in advance