Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Reports / Printing / December 2005

Tip: Looking for answers? Try searching our database.

How do I set up a report to get # of participants by agency in Acc

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
PVKowgirl - 13 Dec 2005 21:41 GMT
I am new to Access and have created a conference database.  I need to report
on the number of participants who attended by their agency.  How do I set up
a report to reflect this information?
David Lloyd - 14 Dec 2005 13:43 GMT
Hopefully, the following references can get you started.  First, you should
create a query to calculate the number of participants by agency.  This
normally done with a "GROUP BY" query, using the "Count" aggregate function.
The following KB article give more information on creating such a query.  In
the article, the instructions refer to the SUM function.  Just use the Count
function instead.

http://support.microsoft.com/default.aspx?scid=kb;en-us;304361

Your query might look similar to the following:

SELECT Agency, Count(*) as AgencyCount
FROM MyTable
GROUP BY Agency

Once you have created the query, you can use it as the basis for your report
(Record Source property).  Below is a download link for some sample Access
reports that you can use as a guide.

http://www.microsoft.com/downloads/details.aspx?familyid=71DB24A5-C76F-4EDA-BC9A
-5FAC336EF7F1&displaylang=en


Signature

David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.

I am new to Access and have created a conference database.  I need to report
on the number of participants who attended by their agency.  How do I set up
a report to reflect this information?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.