Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

You cannot record your changes: filter issue

Status
Not open for further replies.

Utreg

IS-IT--Management
Jul 22, 2002
466
NL
Hi,

I've created a linked (External data to .txt files) database and want to filter out the non nummeric and NULL values/lines.
A query refers to the linked table and have set 1 Criteria to filter them.

If I try the following SQL statement:

Code:
SELECT [Tbl user].iUserId, [Tbl user].nvcLastName
FROM [Tbl user]
WHERE ((([Tbl user].iUserId) Is Not Null));
or try:
Code:
WHERE (([Tbl user].iUserId)>0);

and switch to data sheet view it runs fine but after I save the Query and open it again the following error message pops up:
You cannot record your changes because a value you entered violates the settings for this table or list..

Can you spot what went wrong?
Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top