ACC: Expressions to Count Yes, No, and Other Responses

Last reviewed: April 2, 1997
Article ID: Q101076
The information in this article applies to:
  • Microsoft Access versions 1.0, 1.1, 2.0, 7.0, 97

SUMMARY

Moderate: Requires basic macro, coding, and interoperability skills.

This article lists sample expressions that you can use to count the occurrences of Yes, No, or Null in a field with a Yes/No data type.

MORE INFORMATION

The following expressions can be used in a report footer to count the occurrences of Yes, No, or Null in a field named YesNoField the with data type Yes/No:

   Expression                         Sums What
   --------------------------------------------
   =Sum(IIF([YesNoField],1,0))        Yes
   =Sum(IIF([YesNoField],0,1))        No
   =Sum(IIF(Not[YesNoField],1,0))     No
   =Sum(IIF(IsNull[YesNoField],1,0))  Null

You can also create a related expression to count a specific value in a field. For example, the following sample expression counts all occurrences of the value 3 in a field called MyField.

   =Sum(IIF([MyField]=3,1,0))

Example Using Sample Database Northwind.mdb (or NWIND.MDB in 1.x or 2.0)

  1. Open the sample database Northwind.mdb.

  2. Use the Report Wizard to create a Groups/Totals report based on the Products table.

  3. Select CategoryID and UnitPrice as the fields for your report.

    NOTE: In versions 1.x and 2.0, there is a space in Category ID and Unit Price.

  4. Group on CategoryID.

  5. In the report's Design view, select Sorting and Grouping from the View menu and make sure that the GroupFooter property for CategoryID is set to Yes.

  6. In the report's Design view, add an unbound text box in the CategoryID Footer section with the ControlSource property for the box set to the following expression:

          =Sum(IIF([Discontinued],1,0))
    

  7. Add a second unbound text box with the ControlSource property for the box set to the following expression:

          =Sum(IIF([Discontinued],0,1))
    

  8. From the File menu, choose Print Preview. The first expression will count the number of products within each category that have the Discontinued field set to Yes. The second expression will count the number of products within each category that have the Discontinued field set to No.


Keywords : kbusage RptTotal
Version : 1.0 1.1 2.0 7.0 97
Platform : WINDOWS
Hardware : X86
Issue type : kbinfo


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 2, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.