Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Section Counter?

Status
Not open for further replies.

adowen

Programmer
Oct 13, 2001
6
US
I have a table that lists the number of sections passed in a workbook. To add records into the table (signifying that the section was passed that day), the user places a checkmark in the checkbox.

I need to add a field to a query that will count the number of records for a person on a day to know the number of sections that they passed that day.

How would I do something like this?

Thanx in advance,

Adam
 
Hi Adam!

Try this(generic field names):

Select PersonID, Count(Sections) As NumberOfSections From YourTable Group By PersonID

hth
Jeff Bridgham
bridgham@purdue.edu
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top