Update Query

Hayvek

Registered User.
Local time
Today, 15:15
Joined
Dec 4, 2002
Messages
11
UPDATE tblCDDetails SET tblCDDetails.Available = "No"
WHERE (((tblCDDetails.CDNumber)=[forms]![frmLoanCD]![CDNumber]));

is what ive got, yet i get some type conversion error. basically i want it change the availability of the CD to "No" (its a yes/no field) by searching for the CDNumber and i cant whats wrong with it. i can override the error and it seems to work fine. whats a type conversion error?

thanks for any help :)
 
It means that you're trying to enter the wrong type of data to a field. i.e. text to number or whatever.

Col:cool:
 
hmmm so its trying to update my CDNumber field to "no" yes? which it cant do because thats an autonumber
 

Users who are viewing this thread

Back
Top Bottom