add multiple records at once

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using Contacts database template available from Microsoft Access website.
I'd like to be able to add new Call notes to multiple contacts at once.
Contacts table is related to Calls table where each contact can have multiple
Call notes. For example, if I send an email to all my contacts and would like
to log that in calls table can I do it for all contacts instead of having to
go into each contact to add a note? Is there a way to do something like this?
 
I am using Contacts database template available from Microsoft Access website.
I'd like to be able to add new Call notes to multiple contacts at once.
Contacts table is related to Calls table where each contact can have multiple
Call notes. For example, if I send an email to all my contacts and would like
to log that in calls table can I do it for all contacts instead of having to
go into each contact to add a note? Is there a way to do something like this?

You could create an Append query; if you have some criteria
identifying which contacts need new Call records, simply base the
Append query on the Contacts table using these criteria. Append the
ContactID from the Contacts table, and the other fields (date/time,
purpose, etc.) from calculated fields:

INSERT INTO Calls
(ContactID, CallDate, Subject)
SELECT ContactID, Now(), "EMail about database design"
FROM Contacts
WHERE <your criteria>

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top