Hello everyone,
Is there a way to automatically add a record to a table when a record is added to another table?
For example: I have a table [contacts] and a table [calls].
The [contacts] table contains prospect demographics (name, address, phone number etc.), the primary key is an autonumber.
The [calls] table contains the fields: CallID, ContactID, CallDate, CallTime, Subject, Notes. This table is used to record information every time a prospect is contacted.
The relationship is 1:n. bound by the autonumber field ContactID.
When a new record is added to the [contacts] table I would like a note to be automatically added to the [calls] table. Actually I want a date stamp and the subject line to read "Prospect added", I dont actually need a note in the notes field.
Is there a way to do this?
Is there a way to automatically add a record to a table when a record is added to another table?
For example: I have a table [contacts] and a table [calls].
The [contacts] table contains prospect demographics (name, address, phone number etc.), the primary key is an autonumber.
The [calls] table contains the fields: CallID, ContactID, CallDate, CallTime, Subject, Notes. This table is used to record information every time a prospect is contacted.
The relationship is 1:n. bound by the autonumber field ContactID.
When a new record is added to the [contacts] table I would like a note to be automatically added to the [calls] table. Actually I want a date stamp and the subject line to read "Prospect added", I dont actually need a note in the notes field.
Is there a way to do this?