Nov 4, 2005 #1 mflancour MIS Apr 23, 2002 379 US Is there a way to search for, and replace retuns within an access field...ie: Before replacement: asdf asdf asdffasdf After replacement: asdf asdf asdffasdf
Is there a way to search for, and replace retuns within an access field...ie: Before replacement: asdf asdf asdffasdf After replacement: asdf asdf asdffasdf
Nov 4, 2005 1 #2 Remou Technical User Sep 30, 2002 13,030 BE You can use a query, for one: [tt]UPDATE tblTable SET tblTable.SomeField = Replace([SomeField],(Chr(13)+Chr(10))," ");[/tt] Upvote 0 Downvote
You can use a query, for one: [tt]UPDATE tblTable SET tblTable.SomeField = Replace([SomeField],(Chr(13)+Chr(10))," ");[/tt]