I would like to have these as a single query, with multiple cols/fields.
Thanks!!!!
It looks like each of your queries returns a single record. If this is the
case you can use subqueries to create all but the first value/column. For
instance if you want a query in the sample Northwinds database that counts
the number of products, customers, and employees your SQL would look like:
SELECT Count(Products.ProductID) AS CountOfProductID, (SELECT Count(*) FROM
Customers) AS NumCustomers, (SELECT Count(*) FROM Employees) AS NumEmployees
FROM Products;
Your query might look something like:
SELECT Count(SCD.Status) AS [# Actions Returned],
(SELECT Count(SCD.Status)
FROM SCD
WHERE (SCD.Assigned)="Carla" And (SCD.Status)="pending") AS [# Actions
Pending],
(SELECT Count(SCD.Status)
FROM SCD
WHERE (SCD.Assigned)="Carla" And (SCD.Status)="solicited") AS [# Actions
Solicited]
(SELECT Count(SCD.[SUP CON A&E UTL SVC])
FROM SCD
WHERE (SCD.Assigned)="Carla" And (SCD.[SUP CON A&E UTL SVC])="mod") AS [#
MOD Actions]
FROM SCD
WHERE (SCD.Assigned)="Carla" And (SCD.Status)="returned";
I also think a crosstab might get you most of the way to your destination.

Signature
Duane Hookom
Microsoft Access MVP
> I would like to have these as a single query, with multiple cols/fields.
>
[quoted text clipped - 26 lines]
> > > Thanks,
> > > Lee