merge total number of records with grouped data in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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;
 

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

Back
Top