J js May 17, 2004 #1 hi, how to put a carriage return into a update query: update tb1 set fd1 = "" + chr(13) + ""?? thanks.
hi, how to put a carriage return into a update query: update tb1 set fd1 = "" + chr(13) + ""?? thanks.
D Douglas J. Steele May 17, 2004 #2 You need both Chr(13) & Chr(10) in that order, and you really don't need the null strings. update tb1 set fd1 = chr(13) & chr(10) Of course, I don't see what use fd1 is going to be!
You need both Chr(13) & Chr(10) in that order, and you really don't need the null strings. update tb1 set fd1 = chr(13) & chr(10) Of course, I don't see what use fd1 is going to be!