Query only runs in Design Mode

G

Guest

This query runs great in Design Mode
It runs only once after Query compiles, subsequent runs return Numeric Field
Overflow error. The [US PUB DATE] FIELD IS 10 CHAR TEXT 'MM/DD/YYYY'

SELECT IsDate([US PUB DATE]) AS Expr1
FROM [Trade Book]
WHERE (((IsDate([US PUB DATE]))<>-1));

Any Ideas?
 
J

John W. Vinson

This query runs great in Design Mode
It runs only once after Query compiles, subsequent runs return Numeric Field
Overflow error. The [US PUB DATE] FIELD IS 10 CHAR TEXT 'MM/DD/YYYY'

SELECT IsDate([US PUB DATE]) AS Expr1
FROM [Trade Book]
WHERE (((IsDate([US PUB DATE]))<>-1));

Any Ideas?

Try

SELECT <some fields you want to see>
FROM [Trade Book]
WHERE NOT IsDate([US PUB DATE]);


John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top