merge total number of records with grouped data in Access

A

aristaeus

I have a table of Potential customers which were the subject of a mailshot.
I join this table to Current Customers to show how many potential customers
responded to the mailshot by placing an order. I want to include in this
data, in each row, the total number of records in the table of Potential
Customers. Is this possible?
 
S

Smartin

aristaeus said:
I have a table of Potential customers which were the subject of a mailshot.
I join this table to Current Customers to show how many potential customers
responded to the mailshot by placing an order. I want to include in this
data, in each row, the total number of records in the table of Potential
Customers. Is this possible?

Perhaps a subquery.

SELECT
blah blah blah,
(SELECT Count(*) FROM PotentialCust)
FROM CurrentCust;
 
Top