Removing VbCrLf from a variable string

craigachan

Registered User.
Local time
Today, 14:34
Joined
Nov 9, 2007
Messages
285
Hi all,

I've read through all the 'Remove CR's' but am still confused on how to do it.

I have a field that may have a variable string. What I want to do is remove the vbCrLf from it, where ever it is. How do I do this?

Thanks for your help.
 
I think you can you use the replace function:

Replace([FieldName], vbCrLf, "")

Gregg
 
Thanks so much Gregg
 

Users who are viewing this thread

Back
Top Bottom