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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Record Count

Status
Not open for further replies.

tony35

Technical User
Aug 16, 2003
1
US
I am attempting to create a feild on my report that will count specific entries within one column on a table. For instance, I have a column named "case status". The two options in the column are "open' and "closed". I would like to count all the "open" and "closed" individually in seperate fields on a report.

Open: 25
Closed: 105

Thank you for your help.

Tony
 
Try:
=Abs(Sum([Case Status]="Open"))
=Abs(Sum([Case Status]="Closed"))

Duane
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top