A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Contacts and New Mailings



 
 
Thread Tools Display Modes
  #1  
Old February 23rd, 2009, 06:05 PM posted to microsoft.public.access.tablesdbdesign
Steve C
external usenet poster
 
Posts: 59
Default Contacts and New Mailings

I'm trying to determine the best way to design a basic database to track
contacts who receive periodic mailings from us. I have created a Contacts
table (ContactID, Contact), a Mailing table (MailingID, Description) and a
MailingDetails table (ContactID, MailingID).

Once the Marketing Dept. decides to send out a new mailing, my goal is to
create a form where users can enter the name of the new mailing, plus quickly
check off which contacts will be receiving it. Any suggestions on a way to
approach that would be appreciated!

--
Steve C
  #2  
Old February 24th, 2009, 03:37 AM posted to microsoft.public.access.tablesdbdesign
Piet Linden[_2_]
external usenet poster
 
Posts: 280
Default Contacts and New Mailings

On Feb 23, 12:05*pm, Steve C wrote:
I'm trying to determine the best way to design a basic database to track
contacts who receive periodic mailings from us. *I have created a Contacts
table (ContactID, Contact), a Mailing table (MailingID, Description) and a
MailingDetails table (ContactID, MailingID).

Once the Marketing Dept. decides to send out a new mailing, my goal is to
create a form where users can enter the name of the new mailing, plus quickly
check off which contacts will be receiving it. *Any suggestions on a way to
approach that would be appreciated!

--
Steve C


The answer depends somewhat on the number of recipients you would be
sending to. If it's a manageable number, you could use a multi-select
listbox to choose which people to send the message to and then just
add them to the address list in code.
  #3  
Old February 24th, 2009, 05:08 PM posted to microsoft.public.access.tablesdbdesign
TedMi[_3_]
external usenet poster
 
Posts: 48
Default Contacts and New Mailings

Another way that I use for larger numbers of recipients: add a yes/no field,
e.g. SendMail, to the Contacts table. Each time a new mailing is created,
update SendMail to FALSE for all contacts. Display all contacts in a
continuous or datasheet form, where SendMail is displayed as a checkbox, and
have users click on this field for each desired recipient. Base your
mail-merge on a query that selects from the Contacts table where
SendMail=TRUE
-TedMi

"Piet Linden" wrote in message
...
On Feb 23, 12:05 pm, Steve C wrote:
I'm trying to determine the best way to design a basic database to track
contacts who receive periodic mailings from us. I have created a Contacts
table (ContactID, Contact), a Mailing table (MailingID, Description) and a
MailingDetails table (ContactID, MailingID).

Once the Marketing Dept. decides to send out a new mailing, my goal is to
create a form where users can enter the name of the new mailing, plus
quickly
check off which contacts will be receiving it. Any suggestions on a way to
approach that would be appreciated!

--
Steve C


The answer depends somewhat on the number of recipients you would be
sending to. If it's a manageable number, you could use a multi-select
listbox to choose which people to send the message to and then just
add them to the address list in code.


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:57 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.