Access9001
Registered User.
- Local time
- Today, 14:17
- Joined
- Feb 18, 2010
- Messages
- 268
Background info:
Cust_ID represents the id number of a customer, Branch is the general location (e.g. "Dallas"), Representative is the person assigned to that customer, and Address is the customer's address. SendMail, SendEmails, and SendCalls are boolean values that basically ask "Is it OK to send mail to this customer?", etc.
I basically want to be able to have Representatives be able to pull up all customers by branch (this is easy enough to do) in order to check/uncheck corresponding Send variables. So for instance, say John Doe pulls up customers in Dallas and sees the following:
Cust_ID, Branch, Representative, Address, SendMail, SendEmails, SendCalls
12345, Dallas, John Doe, Sunny Lane, 1, 0, 1
Where the rep can edit SendMail, SendEmails, and SendCalls for that particular Cust_ID.
My questions:
Is it possible to create a process that does the following:
1. Takes a source table, Customers, which has Cust_ID, Branch, Representative, and Branch -- and have a Make Table that also appends blank fields SendMail, SendEmails, and SendCalls as yes/no fields? I have to store the Send data in a table somewhere, obviously.
2. Can I update the result of my Make Table by changing Representatives when they are updated through the Customers table?
3. Can I also append any new results? I say append because re-making this table would wipe out the Send data that the Representatives enter/modify.
Apologies if this is actually a really hard question -- but I have no idea how to do this elegantly.
Cust_ID represents the id number of a customer, Branch is the general location (e.g. "Dallas"), Representative is the person assigned to that customer, and Address is the customer's address. SendMail, SendEmails, and SendCalls are boolean values that basically ask "Is it OK to send mail to this customer?", etc.
I basically want to be able to have Representatives be able to pull up all customers by branch (this is easy enough to do) in order to check/uncheck corresponding Send variables. So for instance, say John Doe pulls up customers in Dallas and sees the following:
Cust_ID, Branch, Representative, Address, SendMail, SendEmails, SendCalls
12345, Dallas, John Doe, Sunny Lane, 1, 0, 1
Where the rep can edit SendMail, SendEmails, and SendCalls for that particular Cust_ID.
My questions:
Is it possible to create a process that does the following:
1. Takes a source table, Customers, which has Cust_ID, Branch, Representative, and Branch -- and have a Make Table that also appends blank fields SendMail, SendEmails, and SendCalls as yes/no fields? I have to store the Send data in a table somewhere, obviously.
2. Can I update the result of my Make Table by changing Representatives when they are updated through the Customers table?
3. Can I also append any new results? I say append because re-making this table would wipe out the Send data that the Representatives enter/modify.
Apologies if this is actually a really hard question -- but I have no idea how to do this elegantly.
Last edited: