> >Thanks for your help on this by the way..
> >If I am using 2 tables in a query, each having a field called customer
[quoted text clipped - 18 lines]
>
> John W. Vinson[MVP]
>I have a table that displays various items of customer information (name,
>number, address). Each customer is one line item in the table with no
>duplicates.
What is this table's Primary Key (or does it have one?) Is there a
unique CustomerID, such as an Autonumber?
>I have a second table that displays how often we call on customers in a
>given week with creates a situation where the customer info is listed
>multiple times in the table. Ex. Cust A is seen on Monday and Wed resulting
>in 2 line items for Cust A.
That's incorrect design. Your calls table should NOT contain any
customer information, other than a CustomerID (a Long Integer if the
first table's primary key is an Autonumber) as a link to the customer
table.
>How can i apply a data record like "type of
>account" from the non-duplicate list to the list with multiple enteries for
>the same account based the day of week. I want Cust A, which is listed 3
>times on the second table to display 'restaurant' for each of the 3 line
>items using the first table
Create a Query joining the Customers table to the Calls table by the
CustomerID (or appropriate linking field). You'll then have all of the
information from both tables available for display.
John W. Vinson[MVP]