I seek it here, I seek it there. But mainly in this column.
July 11, 2006 2:15 PM
Subscribe
Calling MS Access wizards... A batch find and replace conundrum.
I would really appreciate a solution to this problem, I just can't phrase it right on google to get the correct answer:
Problem : Access database, with many columns. One column has a serial number, sequential incrementing by 1 each record.
I need to replace given numbers with a word, the same word every time.
So in the column there would be
100123
100124
100125
100126
..
100999
And I need to replace just {100124,100125} with "RECEIVED" or similar. I need to do this with hundreds of entries daily, and it needs to be saved to the table once finished, so a query isn't any use. Doing this every day is pure torture by boredom.
Useful answers will receive my undying adulation, plus three free covert assassinations!
posted by snailer to computers & internet (13 comments total)
If the column is not defined specifically as a number, you need to change your query to an update query from the query menu.
You want your sql to look like this:
set {column_name} = "RECEIVED";
posted by SuperSquirrel at 2:42 PM on July 11, 2006