Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you trouble shoot a "Data type mismatch in criteria expression" error in MS Access 2010? [closed]

I am trying to troubleshoot a Report in an MS Access Database. This file was build by the person that held my role before I joined the organization I work for.

The report is throwing an error "Data type mismatch in criteria expression" This leads me to believe that the data being imported into the DB is not compatible with the data types set in the report's query. There are 53 pieces in the SQL SELECT Statement.

Is there a good way to trouble shoot the statement (in Access) to find which piece is causing the error? I'm just getting back into using Access so I'm a little rusty.

like image 314
JasonR Avatar asked Jan 26 '15 17:01

JasonR


1 Answers

The criteria expression is the part of the query containing the conditions, as in WHERE <condition>. Look at those specifically. The error message means you're comparing two things (this equals that, or this less than that, etc.) that are of two different, and incompatible types (comparing a number to a string, for example).

You can find out which condition is causing the problem by deleting them one at a time and testing again each time until the error disappears.

Make sure you save a copy of your original query, or make a new copy for testing.

like image 117
Robert Harvey Avatar answered Nov 03 '22 02:11

Robert Harvey