May 7, 2004 #1 dhaveedh Programmer Aug 13, 2003 112 GB Does anyone out there have any code that can check through all the fields in atable and replace all occurences of a comma with a space. Any help will be appreciated. Thanks KISS - Keep It Simple Sugar!
Does anyone out there have any code that can check through all the fields in atable and replace all occurences of a comma with a space. Any help will be appreciated. Thanks KISS - Keep It Simple Sugar!
May 7, 2004 #2 psemianonymous Programmer Dec 2, 2002 1,877 US Uh, you can do a bunch of UDPATE queries, where you do [tt]UPDATE tablename SET fieldname = Replace([fieldname], ",", " ")[/tt] Look carefully and you'll see how that works. This will be quicker to set up than any code we might write. Upvote 0 Downvote
Uh, you can do a bunch of UDPATE queries, where you do [tt]UPDATE tablename SET fieldname = Replace([fieldname], ",", " ")[/tt] Look carefully and you'll see how that works. This will be quicker to set up than any code we might write.