Question : I need to strip out every vbCrLF from a field

Is there an easy way to search a field for vbCrLf and strip them out?

Answer : I need to strip out every vbCrLF from a field

Make a backup first an then try this:

UPDATE Table2 SET Table2.FIELD1 = Replace([FIELD1],Chr(13) & Chr(10),"");

mx
Random Solutions  
 
programming4us programming4us