K
klam
When I try to run a report I get this message:
"You tried to execute a query that does not include the specified expression
'[PLA Practitioners Contact List vJan23].[PRAXIS ID]' as part of an aggregate
function."
From lurking I other posts, I removed the "Total" row from the query but it
still locked me out of the report (same error message).
What I REALLY trying to do is get a report that looks like a "spreadsheet".
Quite simple (or so I thought):
Region |# of Practicums | # of 2nd Groups | # of 3rd Groups | etc.
a
b
c
Below is the SQL from my query with the total row in (I think I need it for
the number of each type of group (practicum, 2nd group, etc.) in each region).
I'm new to Access (using v2000 on XP), and would greatly appreciate any
suggestions.
cheers,
karen
SELECT [PLA Practitioners Contact List vJan23].[Region], Count([PLA
Practitioners Contact List vJan23].[Group #]) AS [CountOfGroup #], [PLA
Practitioners Contact List vJan23].[FirstName], [PLA Practitioners Contact
List vJan23].[LastName], [PLA Practitioners Contact List vJan23].[PRAXIS ID]
FROM [PLA Practitioners Contact List vJan23]
GROUP BY [PLA Practitioners Contact List vJan23].[Region], [PLA
Practitioners Contact List vJan23].[FirstName], [PLA Practitioners Contact
List vJan23].[LastName], [PLA Practitioners Contact List vJan23].[PRAXIS ID]
HAVING ((([PLA Practitioners Contact List vJan23].[PRAXIS ID])<300))
ORDER BY [PLA Practitioners Contact List vJan23].[Region], Count([PLA
Practitioners Contact List vJan23].[Group #]);
"You tried to execute a query that does not include the specified expression
'[PLA Practitioners Contact List vJan23].[PRAXIS ID]' as part of an aggregate
function."
From lurking I other posts, I removed the "Total" row from the query but it
still locked me out of the report (same error message).
What I REALLY trying to do is get a report that looks like a "spreadsheet".
Quite simple (or so I thought):
Region |# of Practicums | # of 2nd Groups | # of 3rd Groups | etc.
a
b
c
Below is the SQL from my query with the total row in (I think I need it for
the number of each type of group (practicum, 2nd group, etc.) in each region).
I'm new to Access (using v2000 on XP), and would greatly appreciate any
suggestions.
cheers,
karen
SELECT [PLA Practitioners Contact List vJan23].[Region], Count([PLA
Practitioners Contact List vJan23].[Group #]) AS [CountOfGroup #], [PLA
Practitioners Contact List vJan23].[FirstName], [PLA Practitioners Contact
List vJan23].[LastName], [PLA Practitioners Contact List vJan23].[PRAXIS ID]
FROM [PLA Practitioners Contact List vJan23]
GROUP BY [PLA Practitioners Contact List vJan23].[Region], [PLA
Practitioners Contact List vJan23].[FirstName], [PLA Practitioners Contact
List vJan23].[LastName], [PLA Practitioners Contact List vJan23].[PRAXIS ID]
HAVING ((([PLA Practitioners Contact List vJan23].[PRAXIS ID])<300))
ORDER BY [PLA Practitioners Contact List vJan23].[Region], Count([PLA
Practitioners Contact List vJan23].[Group #]);