Need guide please.

MaMister

Registered User.
Local time
Today, 13:00
Joined
Sep 27, 2006
Messages
15
Hi,

I have created a simple database named: tblcustomer.mdb with fields of Company, Address and Tel

I would like to create another database which records the jobs that I have done for these companies. I name it tbljobrecord.mdb with fields of Company, job 1 and job 2

My question is, how can I link the Company field (tblcustomer) with the Company field of (tbljobrecord) so that everytime I add in a new Company (tblcustomer), it will be updated on the tbljobrecord too.

Thanks.
 
No need for a second database, create another table for the jobs and link in the relationships. The tables will be linked by the IDNo (an autonumber)

Col
 
Thanks for the help.

I manage to try out and link the 2 tables and it works.

But when I try to create form, the link didn't show up as it is in datasheet view.

Any idea?

Shapshots: http://techland.com.sg/Example.html
 
Always use a query as the forms recordset, not the table. Then you can bring in fields from several tables if needed

Col
 

Users who are viewing this thread

Back
Top Bottom