May 7, 2004 #1 dhaveedh Programmer Joined Aug 13, 2003 Messages 112 Location 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 Joined Dec 2, 2002 Messages 1,877 Location 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.