General software, Operating Systems, and Programming discussion.
Everything from software questions, OSes, simple HTML to scripting languages, Perl, PHP, Python, MySQL, VB, C++ etc.
Are you trying to replace the selected value, or replace the value in the table? If you are trying to replace the selected value, then you could do a UNION SELECT (do this in the SQL View):
UPDATE tblrequest
SET CurrentStatus = " Billed"
WHERE CurrentStatus = "New";
This assumes that the value of the field CurrentStatus contains only the string "New"--so, this will not work correctly if the value is "New Order", for instance. In that case, you'd have to use a function that replaces the token string "New" with the token string " Billed". I haven't used Access since '97, so you'd have to find out the function name from someone else.
Ok none of those worked and heres why I found out even though the Column has text in it, the data is crosslinked to another table that has the samed named column but its fields are number fields, thats why I could not get it to work
Cause its trying to write text to a number field only
once I found the other table I was able to update it
So thanks to all of you for your help
Exar
There Is only the Here and The Now, If you forget about that You might as well be Dead!