importing data from another table

alguzman

Registered User.
Local time
Today, 11:40
Joined
Aug 2, 2001
Messages
63
Hi, I have a members database that track all current members, one of the things I track in the members db is education. Our company provide seminars for member and Non-member companies and the boss wants to have the member database and the seminar database separate.

What I want to do is cut down on double entry. How can I automate the procedure of having the seminar database run a append query and export it to my member database in the education table using memberid as the linking fields. So on the seminar database entry form I would have a command button saying export member info now or something to that affect.
 
How about just creating LINK tables. In one db is the original (doesn't matter which one) and the other is a linked table db. No matter which one you enter into, the info becomes part of each. Thereby two copies of the same info. You can create necessary queries in each to work with the data. You will of course have to add a field to this table that identifys the record as MEMBER or NON-MEMBER.
 
is there some reason why you can't just link the table from the seminar db into the member db? the db's would still be separate, and you would have a more normalized design.

al

oops! jwindon, you're quick on the trigger today !
smile.gif



[This message has been edited by pcs (edited 09-22-2001).]
 
Yes our member db is at a company level but also have a linking table that gives info for each employee within the company. The seminar db that I mentioned would have companies which are not members with their employees that they are sending to the seminar who are not members, then there are member companies and employees who attend the seminars.

The member db is just that members only database. I wanted to know when you enter information into the seminar database and have a member company coming for a seminar I can just click a botton with code behind it sending a copy of that member's seminar information to the member data base.
 

Users who are viewing this thread

Back
Top Bottom