R
Ryan Langton
I recently converted a database from an .mdb to .adp and am having problems
with my queries that use wildcards. Here is an example query in my old
database:
SELECT *
FROM tblUnitDescription
WHERE (Issued_To NOT LIKE "*storage*");
In the .adp, this does not work. I get an error that "*storage*" is an
invalid column. When I try to edit in Design View, my Criteria field is
changed by access to:
NOT LIKE N'[*storage*]'
This, however, generates the same error.
Any suggestions appreciated.
Thanks.
with my queries that use wildcards. Here is an example query in my old
database:
SELECT *
FROM tblUnitDescription
WHERE (Issued_To NOT LIKE "*storage*");
In the .adp, this does not work. I get an error that "*storage*" is an
invalid column. When I try to edit in Design View, my Criteria field is
changed by access to:
NOT LIKE N'[*storage*]'
This, however, generates the same error.
Any suggestions appreciated.
Thanks.