Dec 29, 2000 #1 TechnoVato Programmer Joined Dec 29, 2000 Messages 3 Location US How do I remove a line break in a text to replace it with a space?
Dec 30, 2000 #2 marting Programmer Joined Dec 30, 2000 Messages 1 Location GB try this newstring = replace("string including line break",vbcrlf," " this will replace any occurence of vbcrlf (yes, it should not have quotes) with the space. Cheers Upvote 0 Downvote
try this newstring = replace("string including line break",vbcrlf," " this will replace any occurence of vbcrlf (yes, it should not have quotes) with the space. Cheers