Are you replacing all instances of the chr(13) and chr(10) in two separate Replace functions or combining it into one like Replace(sItemCodeDesc, Chr(13) & Chr(10), """")? Depending on the data, you might want to do it like this Replace(Replace(sItemCodeDesc, Chr(10), """"), Chr(13), """").