I do not know if you are trying to eliminate both CR and LF characters but lets assume you are. You could either create your own function and then make a new field with NewField: YourFunction([OldField])
Or you could do it with two new fields:
NoCrField: Replace([YourField],vbCr,"")
NoCrLfField: Replace([NoCrField],vbLf,"")