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



The information in this article applies to:

  • Microsoft Access 2000

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).

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.

CAUSE

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

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.

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.

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.

Modification Type:MajorLast Reviewed:6/29/2004
Keywords:kberrmsg kbprb kbusage KB208425