M
Martin Prunty
I am attempting to build a query where the total records in that query are
counted. When running the query, I receive a "1" as the count in each row of
the field "Total Records", but the query does not provide a count the total
number of records in the query.
Following is the code I've used, which is intended to count the number of
records in the field "Insurance_Company".
SELECT Results.Insurance_Company, Results.Timestamp, Results.Branch_Dept,
Results.Claim_Number, Results.Requester, Results.Requester_Telephone,
Results.Requester_Email, Count(Results.Insurance_Company) AS [Total Records]
FROM Results
Your help and/or suggestions will be appreciated.
counted. When running the query, I receive a "1" as the count in each row of
the field "Total Records", but the query does not provide a count the total
number of records in the query.
Following is the code I've used, which is intended to count the number of
records in the field "Insurance_Company".
SELECT Results.Insurance_Company, Results.Timestamp, Results.Branch_Dept,
Results.Claim_Number, Results.Requester, Results.Requester_Telephone,
Results.Requester_Email, Count(Results.Insurance_Company) AS [Total Records]
FROM Results
Your help and/or suggestions will be appreciated.