Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: Type Mismatch Error Specifying Criteria with Count in a Query


View products that this article applies to.

This article was previously published under Q208425
Novice: Requires knowledge of the user interface on single-user computers.

This article applies only to a Microsoft Access database (.mdb).

↑ Back to the top


Symptoms

When you specify text criteria for a Text field with Count in the Total row of a totals query, you may receive the following error message:
Data type mismatch in criteria expression.

↑ Back to the top


Cause

The text criteria is being compared to the result of the Count function, which is numeric.

↑ Back to the top


Resolution

You can use one of the following two methods to work around this behavior. These two methods assume that the criteria is meant to limit the records before the Count is performed by the query.

Method 1

You can add the field to the query a second time, and use Where on the Total row. To add a field to a totals query twice, follow these steps:
  1. Start Microsoft Access and open the sample database Northwind.mdb.
  2. In the Database window, click Queries under Objects, and then click New to create a new query based on the Orders table.
  3. Click the Totals button on the toolbar.
  4. Add the field ShipName to the query grid, and then select Count on the Total row.
  5. Add the field ShipName to the query again. Select Where on the Total row. On the Criteria row, type Quick-Stop. Run the query and note that it returns the correct count.

Method 2

Use two queries. To build a totals query based on a select query with a text criteria, follow these steps:
  1. Start Microsoft Access and open the sample database Northwind.mdb.
  2. In the Database window, click Queries under Objects, and then click New to create a new query based on the Orders table.
  3. Drag the ShipName field into the first column of the QBE grid. Type Quick-Stop in the Criteria row. Save the query as Ship Name 1.
  4. Create another new query based on the Ship Name 1 query. Drag the ShipName field to the QBE grid in the first column. Click the Totals button on the toolbar, and then select Count in the Total row.
  5. Run the query and note that it returns the correct count.

↑ Back to the top


More information

Steps to Reproduce the Behavior

  1. Start Microsoft Access and open the sample database Northwind.mdb
  2. In the Database window, click Queries under Objects, and then click New to create a new query based on the Orders table.
  3. Drag the ShipName field to the first column of the QBE grid.
  4. Type Quick-Stop in the Criteria row.
  5. Click the Totals button on the toolbar, and then select Count in the Total row of the QBE grid.
  6. Run the query. Note that you receive the "type mismatch" error.

↑ Back to the top


References

For more information about using the Count() function in queries, click Microsoft Access Help on the Help menu, type count property in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.

↑ Back to the top


Keywords: KB208425, kbusage, kbprb, kberrmsg

↑ Back to the top

Article Info
Article ID : 208425
Revision : 2
Created on : 6/29/2004
Published on : 6/29/2004
Exists online : False
Views : 286