mailing database, adding more tables

C

CarolM

Hi

I have a mailing database that has one table with customer info, and one table with store info on. The tables are linked through a store no. which means that i can view a store and find all the customers related to that store. Each customer record has a tick box to say whether they would like to receive information about events for that store.

I would now like to be able to setup table/forms that i can add store events to. The second part of that would be that i would like to be able to view which customers from my original list attended the function.

The end result would be that i can view the events form and see which customers attended and also have a customers form that would show which events they have attended.

Thanks in advance for your help

Carol
 
T

Tim Ferguson

I would now like to be able to setup table/forms that i can add store
events to.

Events(*EventID, StoreNumber+, Description, HappenedDate, Profit)
The second part of that would be that i would like to be
able to view which customers from my original list attended the
function.

Attended(*EventID, *CustomerID, TurnedUpYesNo, WhoPaidFor)
The end result would be that i can view the events form and see which
customers attended

Base the form on a query joining the Events and Customers tables
and also have a customers form that would show which
events they have attended.

Put a subform or a listbox on the form, based on a query that joins the
Attended and Events tables, using Attended.CustomerID as the linking field.

Hope that helps


Tim F
 

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

Top