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!

Getting a total for a column in an Access Report

Status
Not open for further replies.

brokling

Technical User
Oct 11, 2004
3
US
Getting a total for a column in an Access Report and that column (field) is a "Open/Close" type of field and you wanted the total number of Open Only?
 
Assuming this is a text field named OpenClose and the values are either "Open" or "Close" then you could add a text box with a control source of:
=Sum(Abs([OpenClose]="Open"))


Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top