Apr 11, 2005 #1 rosebud289 Programmer Joined Jan 13, 2005 Messages 25 Location US How do you find and replace null values in Access tables? Thanks!
Apr 11, 2005 1 #2 ProgramError Programmer Joined Mar 2, 2005 Messages 1,027 Location GB UPDATE tblOARequests SET tblOARequests.Printed = -1 WHERE (((tblOARequests.Printed) Is Null)); this changes it to yes or true Program Error Programmers do it one finger at a time! Upvote 0 Downvote
UPDATE tblOARequests SET tblOARequests.Printed = -1 WHERE (((tblOARequests.Printed) Is Null)); this changes it to yes or true Program Error Programmers do it one finger at a time!
Apr 11, 2005 #3 ProgramError Programmer Joined Mar 2, 2005 Messages 1,027 Location GB 'tbloarequests' should be changed to the name of the table and 'printed' should be the filed . sorry I grabbed it straight out of my database Program Error Programmers do it one finger at a time! Upvote 0 Downvote
'tbloarequests' should be changed to the name of the table and 'printed' should be the filed . sorry I grabbed it straight out of my database Program Error Programmers do it one finger at a time!
Apr 11, 2005 Thread starter #4 rosebud289 Programmer Joined Jan 13, 2005 Messages 25 Location US It worked...thanks!!! Upvote 0 Downvote